Android App退出檢測

來源:互聯網
上載者:User

標籤:pex   proc   over   狀態   flags   run   描述   i++   效果   

app的退出檢測是很難的,但是擷取app“要退出”的狀態就容易多了,退出的瞬間並不是真的退出了,ActivityManager要銷毀activity,也需要一些時間和資源的。 
先見下面的運行效果: 

gif做的比價粗啊, 
兩個activity的介面就不介紹了,主要是在APP啟動的時候開啟一個服務,application代碼如下:

public class MyApplication extends Application {    @Override    public void onCreate() {        super.onCreate();        Intent intent=new Intent(this,CheckExitService.class);        getApplicationContext().startService(intent);    }}

service的代碼如下:

public class CheckExitService extends Service {    private String packageName = "test.minwenping.com.appexitdemo";    @Nullable    @Override    public IBinder onBind(Intent intent) {        return null;    }    @Override    public void onTaskRemoved(Intent rootIntent) {        super.onTaskRemoved(rootIntent);        Toast.makeText(CheckExitService.this, "App要退出了", Toast.LENGTH_SHORT).show();    }    //service異常停止的回調    @Override    public int onStartCommand(Intent intent, int flags, int startId) {        ActivityManager activtyManager = (ActivityManager) getSystemService(ACTIVITY_SERVICE);        List<ActivityManager.RunningAppProcessInfo> runningAppProcesses = activtyManager.getRunningAppProcesses();        for (int i = 0; i < runningAppProcesses.size(); i++) {            if (packageName.equals(runningAppProcesses.get(i).processName)) {                Toast.makeText(this, "app還在運行中", Toast.LENGTH_LONG).show();            }        }        return START_NOT_STICKY;    }    @Override    public void onCreate() {        super.onCreate();        Toast.makeText(CheckExitService.this, "App檢測服務開啟了", Toast.LENGTH_SHORT).show();    }}

還有嘗試了守護線程,UI就只有一個線程,想從這方面下手,但是都失敗了

Android App退出檢測

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.