获取app应用日启动次数

package com.testgetapplaunched;
 
import java.lang.reflect.Method;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.List;
import java.util.TimeZone;
 
import android.app.Activity;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.os.Bundle;
import android.text.format.DateUtils;
import android.util.Log;
import android.view.View;
import android.widget.TextView;
 
public class MainActivity extends Activity {
    private SharedPreferences shPreferences;
    private Editor editor;
    private long bootStartTime;
    private boolean flag=false;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        bootStartTime=System.currentTimeMillis();
        TextView tv = (TextView)findViewById(R.id.text);
        shPreferences = getApplicationContext().getSharedPreferences("bootcount", Context.MODE_PRIVATE);
        editor = shPreferences.edit();
        /********************************启动事件之启动次数上报**************************************/
        SimpleDateFormat format=new SimpleDateFormat("yyyy-MM-dd");
        if(!shPreferences.getString("todaytime","").equals(format.format(System.currentTimeMillis()))){
            flag=true; // 新的一天 开始 了
            editor.putString("todaytime",format.format(System.currentTimeMillis()));
        }
        if(shPreferences.getInt("bootcountnum", 0)>=1){
            int x  = shPreferences.getInt("bootcountnum", 0);
            tv.setText("启动次数:"+x);
            editor.putInt("bootcountnum", x+1);
        }else{
            editor.putInt("bootcountnum", 1);
        }
        if(flag){
            flag=false;
            editor.putInt("bootcountnum", 1);
        }
        editor.putLong("bootStartTime", bootStartTime);
         
        //editor.putString("todaytime", format.format(System.currentTimeMillis())); // 2014 2 21 日
        editor.commit();
        // shijian bijiao  
        // 2014 2 21   2 22  == false
        tv.setText("启动次数:"+shPreferences.getInt("bootcountnum", 0));  
        /********************************启动事件之启动次数上报**************************************/
    }
    public void onClick(View v){
        editor.clear().commit();
    }
 
/*    @Override
    protected void   boolean today = DateUtils.isToday(System.currentTimeMillis());
        System.out.println(today +"今天");  boolean today = DateUtils.isToday(System.currentTimeMillis());
        System.out.println(today +"今天");  boolean today = DateUtils.isToday(System.currentTimeMillis());
        System.out.println(today +"今天");  boolean today = DateUtils.isToday(System.currentTimeMillis());
        System.out.println(today +"今天");aonCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        long times = isThisAppUsed(getApplicationContext(),"com.example.onlinetimedemo");
        TextView tv = (TextView)findViewById(R.id.text);
        tv.setText("应用启动次数"+times);
        Log.i("TAG", "应用启动次数"+times);
        //com.testgetapplaunched.MainActivity
        System.out.println(getActivity(getApplicationContext(), "com.testgetapplaunched"));
    }
    
    private String getActivity(Context context,String packageName)
    {
      Intent localIntent = new Intent("android.intent.action.MAIN", null);
      localIntent.addCategory("android.intent.category.LAUNCHER");
      List<ResolveInfo> appList =  context.getPackageManager().queryIntentActivities(localIntent, 0);
      for (int i = 0; i < appList.size(); i++) {
          ResolveInfo resolveInfo = appList.get(i);
          String packageStr = resolveInfo.activityInfo.packageName;
          if (packageStr.equals(packageName)) {
              //这个就是你想要的那个Activity
              Log.i("TAG", resolveInfo.activityInfo.name);
              return resolveInfo.activityInfo.name;
          }
      }
      return "";
    }
 
    public final long isThisAppUsed(Context context,String packageName) {
//        long aUseTime=0;
        int aLaunchCount=0;
        PackageManager pm = context.getPackageManager();
        Intent i = pm.getLaunchIntentForPackage(packageName);
        ComponentName aName = i.getComponent();
        Log.i("TAG", aName.toString());
        try {
 
//            ComponentName aName = new ComponentName(packageName, getActivity(context,packageName));
 
            
 
 
            // 获得ServiceManager类
            Class<?> ServiceManager = Class
                    .forName("android.os.ServiceManager");
 
            // 获得ServiceManager的getService方法
            Method getService = ServiceManager.getMethod("getService",
                    java.lang.String.class);
 
            // 调用getService获取RemoteService
            Object oRemoteService = getService.invoke(null, "usagestats");
 
            // 获得IUsageStats.Stub类
            Class<?> cStub = Class
                    .forName("com.android.internal.app.IUsageStats$Stub");
            // 获得asInterface方法
            Method asInterface = cStub.getMethod("asInterface",
                    android.os.IBinder.class);
            // 调用asInterface方法获取IUsageStats对象
            Object oIUsageStats = asInterface.invoke(null, oRemoteService);
            // 获得getPkgUsageStats(ComponentName)方法
            Method getPkgUsageStats = oIUsageStats.getClass().getMethod(
                    "getPkgUsageStats", ComponentName.class);
            // 调用getPkgUsageStats 获取PkgUsageStats对象
            Object aStats = getPkgUsageStats.invoke(oIUsageStats, aName);
 
            // 获得PkgUsageStats类
            Class<?> PkgUsageStats = Class
                    .forName("com.android.internal.os.PkgUsageStats");
 
            aLaunchCount = PkgUsageStats.getDeclaredField("launchCount")
                    .getInt(aStats);
//            aUseTime = PkgUsageStats.getDeclaredField("usageTime").getLong(
//                    aStats);
 
        } catch (Exception e) {
            Log.e("###", e.toString(), e);
//            e.printStackTrace();
        }
 
//        return aUseTime;
        return aLaunchCount;
    }*/

}



<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <TextView
        android:id="@+id/text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />
    <Button android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/text"
        android:onClick="onClick"
        android:text="清空xml数据"/>
</RelativeLayout>


  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值