真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Android獲取棧頂?shù)膽?yīng)用包名方法

有時(shí)候我們需要判斷棧頂?shù)膽?yīng)用是否是我們的應(yīng)用,于是獲取棧頂?shù)膽?yīng)用包名的需求就出現(xiàn)了。

專(zhuān)注于為中小企業(yè)提供做網(wǎng)站、網(wǎng)站設(shè)計(jì)服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)瑤海免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動(dòng)了上1000+企業(yè)的穩(wěn)健成長(zhǎng),幫助中小企業(yè)通過(guò)網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。

在android5.0之前,系統(tǒng)提供了一套API可以實(shí)現(xiàn)這個(gè)功能。

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

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

當(dāng)然天無(wú)絕人之路,在android5.0之后,android提供了UsageStatsManager的方式來(lái)獲取棧頂?shù)膽?yīng)用包名(并非直接獲取,需要處理)。

UsageStatManager是一個(gè)使用情況統(tǒng)計(jì)管理者,通過(guò)它可以獲取應(yīng)用的使用情況,通過(guò)List集合來(lái)記錄APP的使用情況,通過(guò)UsageStats對(duì)象可以獲取包名,最后的在前臺(tái)的時(shí)間,在前臺(tái)的次數(shù)等等。

他需要權(quán)限:

這個(gè)權(quán)限是需要系統(tǒng)授權(quán)的,系統(tǒng)不授權(quán)獲取不到數(shù)據(jù)。

下面看下實(shí)現(xiàn)案例:

ForegroundAppUtils:將獲取前臺(tái)包名等方法封裝成一個(gè)工具類(lèi)

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;
 /**
  * 獲取棧頂?shù)膽?yīng)用包名
  */
 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;
 }
 /**
  * 判斷當(dāng)前應(yīng)用是否在前臺(tái)
  */
 public static boolean isForegroundApp(Context context) {
  return TextUtils.equals(getForegroundActivityName(context), context.getPackageName());
 }
 /**
  * 獲取時(shí)間段內(nèi),
  */
 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;
 }
 /**
  * 獲取記錄前臺(tái)應(yīng)用的UsageStats對(duì)象
  */
 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 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;
 }
 /**
  * 獲取記錄當(dāng)前應(yīng)用的UsageStats對(duì)象
  */
 public static UsageStats getCurrentUsageStats(Context context, long startTime, long endTime) {
  if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
   List 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;
 }
 /**
  * 通過(guò)UsageStatsManager獲取List集合
  */
 public static List 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的參數(shù)定義了5個(gè),具體查閱源碼
   List usageStatses = manager.queryUsageStats(UsageStatsManager.INTERVAL_BEST, startTime, endTime);
   if (usageStatses == null || usageStatses.size() == 0) {// 沒(méi)有權(quán)限,獲取不到數(shù)據(jù)
    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中啟動(dòng)service,在service中每5秒獲取一次前臺(tái)應(yīng)用包名。

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權(quán)限

以上這篇Android獲取棧頂?shù)膽?yīng)用包名方法就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持創(chuàng)新互聯(lián)。


網(wǎng)頁(yè)題目:Android獲取棧頂?shù)膽?yīng)用包名方法
文章起源:http://weahome.cn/article/pesdgo.html

其他資訊

在線(xiàn)咨詢(xún)

微信咨詢(xún)

電話(huà)咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部