組み込みのアプリケーション(メッセージング、連絡先など)がいつ実行されているかを認識する、バックグラウンドで実行される1つのアプリケーションが欲しいです。
だから私の質問は:
アプリケーションをバックグラウンドで実行する方法。
私のバックグラウンドアプリケーションが、フォアグラウンドで現在実行されているアプリケーションを知る方法。
経験のある方からの回答をお待ちしています。
組み込みのアプリケーション(メッセージング、連絡先など)がいつ実行されているかを認識する、バックグラウンドで実行される1つのアプリケーションが欲しいです。
だから私の質問は:
アプリケーションをバックグラウンドで実行する方法。
私のバックグラウンドアプリケーションが、フォアグラウンドで現在実行されているアプリケーションを知る方法。
経験のある方からの回答をお待ちしています。
回答:
「2.バックグラウンドアプリケーションがフォアグラウンドで現在実行されているアプリケーションをどのようにして知ることができるか」について。
getRunningAppProcesses()
メソッドを使用しないでください。これは、私の経験からあらゆる種類のシステムのゴミを返し、複数の結果が得られるためRunningAppProcessInfo.IMPORTANCE_FOREGROUND
です。getRunningTasks()
代わりに使用
これは、現在のフォアグラウンドアプリケーションを識別するためにサービスで使用するコードで、非常に簡単です。
ActivityManager am = (ActivityManager) AppService.this.getSystemService(ACTIVITY_SERVICE);
// The first in the list of RunningTasks is always the foreground task.
RunningTaskInfo foregroundTaskInfo = am.getRunningTasks(1).get(0);
それで、フォアグラウンドのアプリ/アクティビティの詳細に簡単にアクセスできます。
String foregroundTaskPackageName = foregroundTaskInfo .topActivity.getPackageName();
PackageManager pm = AppService.this.getPackageManager();
PackageInfo foregroundAppPackageInfo = pm.getPackageInfo(foregroundTaskPackageName, 0);
String foregroundTaskAppName = foregroundAppPackageInfo.applicationInfo.loadLabel(pm).toString();
これには、活動の目録で追加の許可が必要であり、完全に機能します。
<uses-permission android:name="android.permission.GET_TASKS" />
getRunningTasks()
API 21で廃止され(ロリポップ) - developer.android.com/reference/android/app/...
私は正しい方法を難しい方法で見つけなければなりませんでした。以下のコードはcyanogenmod7(タブレットの微調整)の一部であり、android 2.3.3 / gingerbreadでテストされています。
メソッド:
これはうまくいけばすべての点でこの問題に答えます(:
private RunningAppProcessInfo getForegroundApp() {
RunningAppProcessInfo result=null, info=null;
if(mActivityManager==null)
mActivityManager = (ActivityManager)mContext.getSystemService(Context.ACTIVITY_SERVICE);
List <RunningAppProcessInfo> l = mActivityManager.getRunningAppProcesses();
Iterator <RunningAppProcessInfo> i = l.iterator();
while(i.hasNext()){
info = i.next();
if(info.importance == RunningAppProcessInfo.IMPORTANCE_FOREGROUND
&& !isRunningService(info.processName)){
result=info;
break;
}
}
return result;
}
private ComponentName getActivityForApp(RunningAppProcessInfo target){
ComponentName result=null;
ActivityManager.RunningTaskInfo info;
if(target==null)
return null;
if(mActivityManager==null)
mActivityManager = (ActivityManager)mContext.getSystemService(Context.ACTIVITY_SERVICE);
List <ActivityManager.RunningTaskInfo> l = mActivityManager.getRunningTasks(9999);
Iterator <ActivityManager.RunningTaskInfo> i = l.iterator();
while(i.hasNext()){
info=i.next();
if(info.baseActivity.getPackageName().equals(target.processName)){
result=info.topActivity;
break;
}
}
return result;
}
private boolean isStillActive(RunningAppProcessInfo process, ComponentName activity)
{
// activity can be null in cases, where one app starts another. for example, astro
// starting rock player when a move file was clicked. we dont have an activity then,
// but the package exits as soon as back is hit. so we can ignore the activity
// in this case
if(process==null)
return false;
RunningAppProcessInfo currentFg=getForegroundApp();
ComponentName currentActivity=getActivityForApp(currentFg);
if(currentFg!=null && currentFg.processName.equals(process.processName) &&
(activity==null || currentActivity.compareTo(activity)==0))
return true;
Slog.i(TAG, "isStillActive returns false - CallerProcess: " + process.processName + " CurrentProcess: "
+ (currentFg==null ? "null" : currentFg.processName) + " CallerActivity:" + (activity==null ? "null" : activity.toString())
+ " CurrentActivity: " + (currentActivity==null ? "null" : currentActivity.toString()));
return false;
}
private boolean isRunningService(String processname){
if(processname==null || processname.isEmpty())
return false;
RunningServiceInfo service;
if(mActivityManager==null)
mActivityManager = (ActivityManager)mContext.getSystemService(Context.ACTIVITY_SERVICE);
List <RunningServiceInfo> l = mActivityManager.getRunningServices(9999);
Iterator <RunningServiceInfo> i = l.iterator();
while(i.hasNext()){
service = i.next();
if(service.process.equals(processname))
return true;
}
return false;
}
mActivityManager.getRunningTasks(1).get(0).topActivity
ますか?
次のコードを試してください:
ActivityManager activityManager = (ActivityManager) newContext.getSystemService( Context.ACTIVITY_SERVICE );
List<RunningAppProcessInfo> appProcesses = activityManager.getRunningAppProcesses();
for(RunningAppProcessInfo appProcess : appProcesses){
if(appProcess.importance == RunningAppProcessInfo.IMPORTANCE_FOREGROUND){
Log.i("Foreground App", appProcess.processName);
}
}
プロセス名は、フォアグラウンドで実行されているアプリのパッケージ名です。それをアプリケーションのパッケージ名と比較してください。同じ場合、アプリケーションはフォアグラウンドで実行されています。
これがあなたの質問に答えてくれることを願っています。
ロリポップ以降、これは変更されました。ユーザーが[設定]-> [セキュリティ]->(最後にスクロールダウン)にアクセスする前に、以下のコードを見つけてください。
private void printForegroundTask() {
String currentApp = "NULL";
if(android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP) {
UsageStatsManager usm = (UsageStatsManager) this.getSystemService(Context.USAGE_STATS_SERVICE);
long time = System.currentTimeMillis();
List<UsageStats> appList = usm.queryUsageStats(UsageStatsManager.INTERVAL_DAILY, time - 1000*1000, time);
if (appList != null && appList.size() > 0) {
SortedMap<Long, UsageStats> mySortedMap = new TreeMap<Long, UsageStats>();
for (UsageStats usageStats : appList) {
mySortedMap.put(usageStats.getLastTimeUsed(), usageStats);
}
if (mySortedMap != null && !mySortedMap.isEmpty()) {
currentApp = mySortedMap.get(mySortedMap.lastKey()).getPackageName();
}
}
} else {
ActivityManager am = (ActivityManager)this.getSystemService(Context.ACTIVITY_SERVICE);
List<ActivityManager.RunningAppProcessInfo> tasks = am.getRunningAppProcesses();
currentApp = tasks.get(0).processName;
}
Log.e(TAG, "Current App in foreground is: " + currentApp);
}
アプリがフォアグラウンドにあるかどうかを独自のサービス/バックグラウンドスレッドから確認する必要がある場合。これは私がそれを実装した方法であり、私にとってはうまくいきます:
public class TestApplication extends Application implements Application.ActivityLifecycleCallbacks {
public static WeakReference<Activity> foregroundActivityRef = null;
@Override
public void onActivityStarted(Activity activity) {
foregroundActivityRef = new WeakReference<>(activity);
}
@Override
public void onActivityStopped(Activity activity) {
if (foregroundActivityRef != null && foregroundActivityRef.get() == activity) {
foregroundActivityRef = null;
}
}
// IMPLEMENT OTHER CALLBACK METHODS
}
次に、アプリがフォアグラウンドにあるかどうかに関係なく、他のクラスからチェックするには、次を呼び出すだけです
if(TestApplication.foregroundActivityRef!=null){
// APP IS IN FOREGROUND!
// We can also get the activity that is currently visible!
}
更新(SHSで指摘):
ApplicationクラスのonCreate
メソッドでコールバックを登録することを忘れないでください。
@Override
public void onCreate() {
...
registerActivityLifecycleCallbacks(this);
}
フォアグラウンドアプリケーションを特定するには、フォアグラウンドアプリの検出に使用できます。https://github.com/ricvalerio/foregroundappcheckerを使用できます。。デバイスのAndroidバージョンに応じて、さまざまな方法を使用します。
サービスに関しては、レポはそれに必要なコードも提供します。基本的に、android studioにサービスを作成させ、onCreateでappCheckerを使用するスニペットを追加します。ただし、許可を要求する必要があります。
getRunningTasks()
非推奨でgetRunningAppProcesses()
信頼性がないことを考慮して、StackOverflowで言及されている2つのアプローチを組み合わせることにしました。
private boolean isAppInForeground(Context context)
{
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP)
{
ActivityManager am = (ActivityManager) context.getSystemService(ACTIVITY_SERVICE);
ActivityManager.RunningTaskInfo foregroundTaskInfo = am.getRunningTasks(1).get(0);
String foregroundTaskPackageName = foregroundTaskInfo.topActivity.getPackageName();
return foregroundTaskPackageName.toLowerCase().equals(context.getPackageName().toLowerCase());
}
else
{
ActivityManager.RunningAppProcessInfo appProcessInfo = new ActivityManager.RunningAppProcessInfo();
ActivityManager.getMyMemoryState(appProcessInfo);
if (appProcessInfo.importance == IMPORTANCE_FOREGROUND || appProcessInfo.importance == IMPORTANCE_VISIBLE)
{
return true;
}
KeyguardManager km = (KeyguardManager) context.getSystemService(Context.KEYGUARD_SERVICE);
// App is foreground, but screen is locked, so show notification
return km.inKeyguardRestrictedInputMode();
}
}
ActivityManagerクラスには、プロセスが実行されているかを確認するための適切なツールです。
これでうまくいきました。ただし、メインメニュー名のみが表示されます。つまり、ユーザーが[設定]-> [Bluetooth]-> [デバイス名]画面を開いた場合、RunningAppProcessInfoはそれを単なる設定として呼び出します。furthurをドリルダウンできません
ActivityManager activityManager = (ActivityManager) context.getSystemService( Context.ACTIVITY_SERVICE );
PackageManager pm = context.getPackageManager();
List<RunningAppProcessInfo> appProcesses = activityManager.getRunningAppProcesses();
for(RunningAppProcessInfo appProcess : appProcesses) {
if(appProcess.importance == RunningAppProcessInfo.IMPORTANCE_FOREGROUND) {
CharSequence c = pm.getApplicationLabel(pm.getApplicationInfo(appProcess.processName, PackageManager.GET_META_DATA));
Log.i("Foreground App", "package: " + appProcess.processName + " App: " + c.toString());
}
}
このようなことをしてください:
int showLimit = 20;
/* Get all Tasks available (with limit set). */
ActivityManager mgr = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);
List<ActivityManager.RunningTaskInfo> allTasks = mgr.getRunningTasks(showLimit);
/* Loop through all tasks returned. */
for (ActivityManager.RunningTaskInfo aTask : allTasks)
{
Log.i("MyApp", "Task: " + aTask.baseActivity.getClassName());
if (aTask.baseActivity.getClassName().equals("com.android.email.activity.MessageList"))
running=true;
}
これは、アプリがフォアグラウンドにあるかどうかを確認する方法です。公式のAndroidの提案に従ってAsyncTaskを使用していることに注意してくださいドキュメントで
`
private class CheckIfForeground extends AsyncTask<Void, Void, Void> {
@Override
protected Void doInBackground(Void... voids) {
ActivityManager activityManager = (ActivityManager) mContext.getSystemService(Context.ACTIVITY_SERVICE);
List<ActivityManager.RunningAppProcessInfo> appProcesses = activityManager.getRunningAppProcesses();
for (ActivityManager.RunningAppProcessInfo appProcess : appProcesses) {
if (appProcess.importance == ActivityManager.RunningAppProcessInfo.IMPORTANCE_FOREGROUND) {
Log.i("Foreground App", appProcess.processName);
if (mContext.getPackageName().equalsIgnoreCase(appProcess.processName)) {
Log.i(Constants.TAG, "foreground true:" + appProcess.processName);
foreground = true;
// close_app();
}
}
}
Log.d(Constants.TAG, "foreground value:" + foreground);
if (foreground) {
foreground = false;
close_app();
Log.i(Constants.TAG, "Close App and start Activity:");
} else {
//if not foreground
close_app();
foreground = false;
Log.i(Constants.TAG, "Close App");
}
return null;
}
}
このようにAsyncTaskを実行します。
new CheckIfForeground().execute();
私は1つの方法で2つのソリューションを組み合わせましたが、API 24とAPI 21で機能します。その他のテストは行いませんでした。
Kotlinのコード:
private fun isAppInForeground(context: Context): Boolean {
val appProcessInfo = ActivityManager.RunningAppProcessInfo()
ActivityManager.getMyMemoryState(appProcessInfo)
if (appProcessInfo.importance == IMPORTANCE_FOREGROUND ||
appProcessInfo.importance == IMPORTANCE_VISIBLE) {
return true
} else if (appProcessInfo.importance == IMPORTANCE_TOP_SLEEPING ||
appProcessInfo.importance == IMPORTANCE_BACKGROUND) {
return false
}
val am = context.getSystemService(Context.ACTIVITY_SERVICE) as ActivityManager
val foregroundTaskInfo = am.getRunningTasks(1)[0]
val foregroundTaskPackageName = foregroundTaskInfo.topActivity.packageName
return foregroundTaskPackageName.toLowerCase() == context.packageName.toLowerCase()
}
そしてマニフェストで
<!-- Check whether app in background or foreground -->
<uses-permission android:name="android.permission.GET_TASKS" />