응용 횟수 조회

2618 단어 조회 하 다.

http://www.eoeandroid.com/forum.php?mod=viewthread&tid=207309
//                  
public final int compare(ApplicationInfo a, ApplicationInfo b) {
            ComponentName aName = a.intent.getComponent();
            ComponentName bName = b.intent.getComponent();
            int result = 0;
//get usagestats service
            IUsageStats mUsageStatsService = IUsageStats.Stub
                        .asInterface(ServiceManager.getService("usagestats"));
            try {
//get PkgUsageStats
                PkgUsageStats aStats = mUsageStatsService
                        .getPkgUsageStats(aName);
                PkgUsageStats bStats = mUsageStatsService
                        .getPkgUsageStats(bName);
                if(aStats!=null && bStats!=null) {
                    if ((aStats.launchCount > bStats.launchCount)
                        || ((aStats.launchCount == bStats.launchCount) && (aStats.usageTime > bStats.usageTime)))
                    result = -1;
                    else if ((aStats.launchCount < bStats.launchCount)
                        || ((aStats.launchCount == bStats.launchCount) && (aStats.usageTime < bStats.usageTime)))
                    result = 1;
                    else {
                    result = 0;
                    }
                }else if(aStats!=null && bStats ==null) {
                    result = -1;
                } else if(aStats==null && bStats !=null) {
                    result = 1;
                }
            } catch (RemoteException e) {
                Log.i("TAG", "get package usage stats fail");
            }

            return result;
        }
 
ActivityManager am = (ActivityManager)this.getSystemService(Context.ACTIVITY_SERVICE);
        Map<String,Integer> apptimes = am.getAllPackageLaunchCounts();
        
        Set<Entry<String,Integer>>  entryset = apptimes.entrySet();
        
        Iterator<Entry<String,Integer>> iterators = entryset.iterator();
        
        while(iterators.hasNext()){
            Entry<String,Integer> item= iterators.next();
            
            Log.d("yzy","key = "+item.getKey() +"  values ="+item.getValue());
        }
        

좋은 웹페이지 즐겨찾기