Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> Android 5.0(包含5.0以下版本) 獲取棧頂應用程序包名,android包名

Android 5.0(包含5.0以下版本) 獲取棧頂應用程序包名,android包名

編輯:關於android開發

Android 5.0(包含5.0以下版本) 獲取棧頂應用程序包名,android包名


  1. /**  
  2.      * 獲取程序包名(本程序包名5.0版本上下都可獲取)  
  3.      *   
  4.      * @return  
  5.      */  
  6.     public String getTaskPackname() {  
  7.         ActivityManager.RunningAppProcessInfo currentInfo = null;  
  8.         Field field = null;  
  9.         int START_TASK_TO_FRONT = 2;  
  10.         String currentApp = "CurrentNULL";  
  11.         if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP) {  
  12.             try {  
  13.                 field = ActivityManager.RunningAppProcessInfo.class.getDeclaredField("processState");  
  14.             } catch (Exception e) {  
  15.                 e.printStackTrace();  
  16.             }  
  17.             ActivityManager am = (ActivityManager) mContext.getSystemService(Context.ACTIVITY_SERVICE);  
  18.             List<RunningAppProcessInfo> appList = am.getRunningAppProcesses();  
  19.             for (ActivityManager.RunningAppProcessInfo app : appList) {  
  20.                 if (app.importance == ActivityManager.RunningAppProcessInfo.IMPORTANCE_FOREGROUND) {  
  21.                     Integer state = null;  
  22.                     try {  
  23.                         state = field.getInt(app);  
  24.                     } catch (Exception e) {  
  25.                         e.printStackTrace();  
  26.                     }  
  27.                     if (state != null && state == START_TASK_TO_FRONT) {  
  28.                         currentInfo = app;  
  29.                         break;  
  30.                     }  
  31.                 }  
  32.             }  
  33.             if (currentInfo != null) {  
  34.                 currentApp = currentInfo.processName;  
  35.             }  
  36.         } else {  
  37.             ActivityManager am = (ActivityManager) mContext.getSystemService(Context.ACTIVITY_SERVICE);  
  38.             List<ActivityManager.RunningAppProcessInfo> tasks = am.getRunningAppProcesses();  
  39.             currentApp = tasks.get(0).processName;  
  40.         }  
  41.         Log.e("TAG", "Current App in foreground is: " + currentApp);  
  42.         return currentApp;  
  43.     }  

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved