我要開始在Android中,檢查哪一個應用程序在後臺不斷運行的服務。如果前臺應用程序在我的應用程序的數據庫中,那麼它會打開一個密碼屏幕來輸入密碼。開始不斷運行服務
我已經取得了什麼是我的服務,只要在應用程序運行,但是當我停止應用程序(從以前的應用程序中刪除),那麼我的服務停止運行。無需輸入密碼即可打開鎖定的應用程序。我在互聯網上嘗試了很多解決方案,但似乎沒有任何工作。請幫我,
package services;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.support.annotation.Nullable;
import android.util.Log;
import android.widget.Toast;
import com.antzion.salmanali.lockapp.FeedReaderContract;
import com.antzion.salmanali.lockapp.FeedReaderDBHelper;
import com.antzion.salmanali.lockapp.PasswordSet;
import com.antzion.salmanali.lockapp.Pattern;
/**
* Created by Salman Majid Ali on 12/26/2016.
*/
public class TestService extends Service {
String [] names;
FeedReaderDBHelper helper;
private AppChecker appChecker;
private String currentLocked = "";
Detector detector;
public TestService()
{
if(Utils.postLollipop())
detector = new LollipopDetector();
else
detector = new PreLollipopDetector();
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Toast.makeText(getApplicationContext(), "service Start", Toast.LENGTH_SHORT).show();
System.out.println("StartRemove");
helper = new FeedReaderDBHelper(this);
names = helper.getNames();
Thread t = new Thread(new Runnable() {
@Override
public void run() {
if(!AppChecker.running)
{
startChecker();
}
}
});
t.start();
return START_STICKY;
}
@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public void onTaskRemoved(Intent rootIntent) {
System.out.println("Remove");
Intent restart=new Intent(getApplicationContext(),this.getClass());
restart.setPackage(getPackageName());
startService(restart);
super.onTaskRemoved(rootIntent);
}
@Override
public void onDestroy()
{
Intent restart=new Intent(getApplicationContext(),this.getClass());
restart.setPackage(getPackageName());
startService(restart);
super.onDestroy();
}
private void startChecker()
{
appChecker = new AppChecker();
appChecker
.when(getPackageName(), new AppChecker.Listener() {
@Override
public void onForeground(String packageName) {
//Toast.makeText(getBaseContext(), "Our app is in the foreground.", Toast.LENGTH_SHORT).show();
}
})
.other(new AppChecker.Listener() {
@Override
public void onForeground(String packageName) {
//System.out.println("Foreground " + packageName);
//System.out.println("In Other " + setting.getBooleanValue(PrefVars.onlock) + " " + setting.getBooleanValue(PrefVars.onLock3) +
// " " + setting.getBooleanValue(PrefVars.lockImmediately));
try {
if(currentLocked != null && !packageName.equals(currentLocked)
&& !helper.isLocked(currentLocked)
&& helper.getValue(FeedReaderContract.FeedEntry.onexit).equals("YES"))
{
Log.i("Locking ", currentLocked);
helper.lock(currentLocked);
}
if(helper.getPackageName(packageName))
{
//System.out.println(packageName + "App is in the Database");
if(helper.isLocked(packageName))
{
System.out.println("UnLocking " + packageName);
getPassword(packageName);
currentLocked = packageName;
}
}
}catch(Exception e)
{
}
//Toast.makeText(getBaseContext(), "Foreground: " + packageName, Toast.LENGTH_SHORT).show();
}
})
.start(this);
}
private void getPassword(String pack)
{
int i = helper.getPassOrPat();
boolean pass = false;
if(i == 1)
pass = true;
else
pass = false;
if(pass)
{
Intent intent = new Intent(this, PasswordSet.class);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtra("PASS", pack);
intent.putExtra("CONFIRM", "YES");
startActivity(intent);
}
else
{
Intent intent = new Intent(this, Pattern.class);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtra("PASS", pack);
intent.putExtra("CONFIRM", "YES");
startActivity(intent);
}
}
}
我可以提供AppChecker類的代碼,如果你想要的。請讓我知道我應該怎麼做才能達到預期的效果。我會非常感激你。
您是否嘗試過在服務的OnCreate移動你的代碼,因爲當服務重新創建,它總是調用ONC reate –
你在測試什麼設備? –
嗨,謝謝大衛對你的迴應。我正在使用運行android 5.1的HUAWEI TAG-L21進行測試。當應用程序從最近的應用程序中移除時,該服務停止。 –