入门为什么Android应用的日志是从前景到背景的移动(Getting log of why And

2019-10-30 02:39发布

我有一个在亭上运行的应用程序。 约8小时后,应用程序“消失”。 通过“消失了”我的意思是,它不再是最顶层的应用程序和桌面显示。 该应用程序仍在运行,虽然,因为它出现后,我点击“切换应用程序”按钮。

我试图找出为什么发生这种情况。 我加

protected void onDestroy() {
    Log.e("here", "onDestroy");
    super.onDestroy();
}

protected void onPause() {
    Log.e("here", "onPause");
    super.onPause();
}


protected void onStop() {
    Log.e("here", "onStop");
    super.onStop();
}

@Override
protected void onCreate(Bundle savedInstanceState) {
    Log.e("here", "onCreate");

    super.onCreate(savedInstanceState);
    webView = (WebView) findViewById(R.id.webView);

    Thread.setDefaultUncaughtExceptionHandler(
                new Thread.UncaughtExceptionHandler() {
                    public void uncaughtException(Thread thread, Throwable ex) {
                    };
                }
        );

当我把一个bug报告我会看看发生了什么,我想这种方式。 然而,没有一个东西是appearning在日志中。

10-31 18:44:03.400   354   397 W InputDispatcher: channel '41327498 com.here/com.here.MainActivity (server)' ~ Consumer closed input channel or an error occurred.  events=0x9
10-31 18:44:03.400   354   397 E InputDispatcher: channel '41327498 com.here/com.here.MainActivity (server)' ~ Channel is unrecoverably broken and will be disposed!
10-31 18:44:03.400   354   607 I WindowState: WIN DEATH: Window{41327498 u0 com.here/com.here.MainActivity}
10-31 18:44:03.420   354   607 W InputDispatcher: Attempted to unregister already unregistered input channel '41327498 com.here/com.here.MainActivity (server)'
10-31 18:44:03.430   354   366 W ActivityManager: Force removing ActivityRecord{411eea18 u0 com.here/.MainActivity}: app died, no saved state
10-31 18:44:03.490   354   413 I qtaguid : Failed write_ctrl(s 0 10054) res=-1 errno=1
10-31 18:44:03.490   354   413 W NetworkManagementSocketTagger: setKernelCountSet(10054, 0) failed with errno -1
10-31 18:44:03.600   354   366 I ActivityManager: Start proc com.android.launcher for activity com.android.launcher/com.android.launcher2.Launcher: pid=7147 uid=10024 gids={50024, 1028}

有没有人有,为什么周围小时的使用时间后,被隐藏在窗口的任何想法? 有什么我可以仪器与系统算出这个?

文章来源: Getting log of why Android app is moved from foreground to background