91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android獲取棧頂的應用包名方法

發布時間:2020-08-31 09:21:33 來源:腳本之家 閱讀:323 作者:張行之 欄目:移動開發

有時候我們需要判斷棧頂的應用是否是我們的應用,于是獲取棧頂的應用包名的需求就出現了。

在android5.0之前,系統提供了一套API可以實現這個功能。

ActivityManager manager = (ActivityManager) getApplicationContext().getSystemService(ACTIVITY_SERVICE);
String currentClassName = manager.getRunningTasks(1).get(0).topActivity.getPackageName();

但是在android5.0之后,這個getRunningTasks()過時了,google做了限制,不讓獲取第三方的應用任務棧,只能獲取自己的應用和Launcher桌面的包名。

當然天無絕人之路,在android5.0之后,android提供了UsageStatsManager的方式來獲取棧頂的應用包名(并非直接獲取,需要處理)。

UsageStatManager是一個使用情況統計管理者,通過它可以獲取應用的使用情況,通過List集合來記錄APP的使用情況,通過UsageStats對象可以獲取包名,最后的在前臺的時間,在前臺的次數等等。

他需要權限:

<uses-permission
  android:name="android.permission.PACKAGE_USAGE_STATS"
  tools:ignore="ProtectedPermissions" />

這個權限是需要系統授權的,系統不授權獲取不到數據。

下面看下實現案例:

ForegroundAppUtils:將獲取前臺包名等方法封裝成一個工具類

public class ForegroundAppUtil {
 private static final long END_TIME = System.currentTimeMillis();
 private static final long TIME_INTERVAL = 7 * 24 * 60 * 60 * 1000L;
 private static final long START_TIME = END_TIME - TIME_INTERVAL;
 /**
  * 獲取棧頂的應用包名
  */
 public static String getForegroundActivityName(Context context) {
  String currentClassName = "";
  if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
   ActivityManager manager = (ActivityManager) context.getApplicationContext().getSystemService(Context.ACTIVITY_SERVICE);
   currentClassName = manager.getRunningTasks(1).get(0).topActivity.getPackageName();
  } else {
   UsageStats initStat = getForegroundUsageStats(context, START_TIME, END_TIME);
   if (initStat != null) {
    currentClassName = initStat.getPackageName();
   }
  }
  return currentClassName;
 }
 /**
  * 判斷當前應用是否在前臺
  */
 public static boolean isForegroundApp(Context context) {
  return TextUtils.equals(getForegroundActivityName(context), context.getPackageName());
 }
 /**
  * 獲取時間段內,
  */
 public static long getTotleForegroundTime(Context context) {
  UsageStats usageStats = getCurrentUsageStats(context, START_TIME, END_TIME);
  if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
   return usageStats != null ? usageStats.getTotalTimeInForeground() : 0;
  }
  return 0;
 }
 /**
  * 獲取記錄前臺應用的UsageStats對象
  */
 private static UsageStats getForegroundUsageStats(Context context, long startTime, long endTime) {
  UsageStats usageStatsResult = null;
  if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
   List<UsageStats> usageStatses = getUsageStatsList(context, startTime, endTime);
   if (usageStatses == null || usageStatses.isEmpty()) return null;
   for (UsageStats usageStats : usageStatses) {
    if (usageStatsResult == null || usageStatsResult.getLastTimeUsed() < usageStats.getLastTimeUsed()) {
     usageStatsResult = usageStats;
    }
   }
  }
  return usageStatsResult;
 }
 /**
  * 獲取記錄當前應用的UsageStats對象
  */
 public static UsageStats getCurrentUsageStats(Context context, long startTime, long endTime) {
  if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
   List<UsageStats> usageStatses = getUsageStatsList(context, startTime, endTime);
   if (usageStatses == null || usageStatses.isEmpty()) return null;
   for (UsageStats usageStats : usageStatses) {
    if (TextUtils.equals(usageStats.getPackageName(), context.getPackageName())) {
     return usageStats;
    }
   }
  }
  return null;
 }
 /**
  * 通過UsageStatsManager獲取List<UsageStats>集合
  */
 public static List<UsageStats> getUsageStatsList(Context context, long startTime, long endTime) {
  if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
   UsageStatsManager manager = (UsageStatsManager) context.getApplicationContext().getSystemService(Context.USAGE_STATS_SERVICE);
   //UsageStatsManager.INTERVAL_WEEKLY,UsageStatsManager的參數定義了5個,具體查閱源碼
   List<UsageStats> usageStatses = manager.queryUsageStats(UsageStatsManager.INTERVAL_BEST, startTime, endTime);
   if (usageStatses == null || usageStatses.size() == 0) {// 沒有權限,獲取不到數據
    Intent intent = new Intent(Settings.ACTION_USAGE_ACCESS_SETTINGS);
    intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    context.getApplicationContext().startActivity(intent);
    return null;
   }
   return usageStatses;
  }
  return null;
 }
}

在MainActivity中啟動service,在service中每5秒獲取一次前臺應用包名。

MainActivity

public class MainActivity extends AppCompatActivity {
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  startService(new Intent(getApplicationContext(),MyService.class));
 }
}

MyService

public class MyService extends Service {
 @Override
 public IBinder onBind(Intent intent) {
  return null;
 }
 private Handler handler = new Handler();
 private Runnable r = new Runnable() {
  @Override
  public void run() {
   String foregroundActivityName = ForegroundAppUtil.getForegroundActivityName(getApplicationContext());
   Toast.makeText(getApplicationContext(), foregroundActivityName, Toast.LENGTH_SHORT).show();
   handler.postDelayed(r, 5000);
  }
 };
 @Override
 public void onCreate() {
  super.onCreate();
 }
 @Override
 public int onStartCommand(Intent intent, int flags, int startId) {
  handler.postDelayed(r, 5000);
  return START_STICKY;
 }
}

AndroidManifest.xml權限

<uses-permission
 android:name="android.permission.PACKAGE_USAGE_STATS"
 tools:ignore="ProtectedPermissions" />

以上這篇Android獲取棧頂的應用包名方法就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

娱乐| 磐石市| 苍山县| 花垣县| 大名县| 漯河市| 泰宁县| 永济市| 藁城市| 永寿县| 乃东县| 永州市| 靖安县| 宣武区| 定边县| 罗山县| 邓州市| 永和县| 双峰县| 武川县| 珠海市| 英吉沙县| 平果县| 阿鲁科尔沁旗| 万州区| 任丘市| 偃师市| 台中市| 太湖县| 江永县| 监利县| 潮安县| 垣曲县| 象山县| 远安县| 罗江县| 怀集县| 汉寿县| 虞城县| 韶关市| 塔河县|