032android初级篇之Timer的使用及获取栈顶包名

测试代码

这段代码的主要功能是使用Timer 定时更新计数。

public class TestTimerActivity extends Activity{
    private  final static String TAG=TestTimerActivity.class.getSimpleName();

    private Timer mWaitTimer;
    private Handler mHandler;
    private TextView mTextView;
    private int mTimes;

    @Override
    protected void onCreate(Bundle savedInstanceState ) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.test_timer_activity);
        mTextView = (TextView) findViewById(R.id.textView);
        mTextView.setText("TestTimer!");
        mTimes =0;

        mHandler = new Handler() {

            public  void handleMessage(Message msg){
                switch (msg.what){
                    case 1:
                        mTextView.setText(""+mTimes);

                }
                super.handleMessage(msg);
            }
        };

        TimerTask mTimerTask = new TimerTask(){
            @Override
            public void run()
            {
                mTimes++;
                Message msg = new Message();
                msg.what = 1;
                mHandler.sendMessage(msg);
            }
        };
        mWaitTimer = new Timer(true);
        mWaitTimer.schedule(mTimerTask,1000,1000);

    }
}

获取栈顶信息

android 5.0 之后官方屏蔽了获取栈顶信息的api,如下的方法在大多数机器上可用:

 public String getTaskPackname() {
    ActivityManager.RunningAppProcessInfo currentInfo = null;
    Field field = null;
    int START_TASK_TO_FRONT = 2;
    String currentApp = "CurrentNULL";
    if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP) {
        try {
            field = ActivityManager.RunningAppProcessInfo.class.getDeclaredField("processState");
        } catch (Exception e) {
            e.printStackTrace();
        }
        ActivityManager am = (ActivityManager) mContext.getSystemService(Context.ACTIVITY_SERVICE);
        List appList = am.getRunningAppProcesses();
        for (ActivityManager.RunningAppProcessInfo app : appList) {
            if (app.importance == ActivityManager.RunningAppProcessInfo.IMPORTANCE_FOREGROUND) {
                Integer state = null;
                try {
                    state = field.getInt(app);
                } catch (Exception e) {
                    e.printStackTrace();
                }
                if (state != null && state == START_TASK_TO_FRONT) {
                    currentInfo = app;
                    break;
                }
            }
        }
        if (currentInfo != null) {
            currentApp = currentInfo.processName;
        }
    } else {
        ActivityManager am = (ActivityManager) mContext.getSystemService(Context.ACTIVITY_SERVICE);
        List tasks = am.getRunningAppProcesses();
        currentApp = tasks.get(0).processName;
    }
    // Log.e("TAG", "Current App in foreground is: " + currentApp);
    return currentApp;
}

参考链接

  1. Android 计时器Timer用法
  2. Android 监听网络状态+源代码
  3. Android 5.0(包含5.0以下版本) 获取栈顶应用程序包名

你可能感兴趣的:(032android初级篇之Timer的使用及获取栈顶包名)