3

我正在开发一个需要在 Android 设备上连续运行 12 小时的 Android 应用程序。该设备除了使用这个应用程序之外什么都不做,所以它总是在前台。经过可变延迟后,我的应用程序被操作系统杀死并显示以下消息:

I/ActivityManager(  360): No longer want com.my.app (pid 1234): empty for 10292s
I/qtaguid (  360): Failed write_ctrl(s 0 10066) res=-1 errno=1
W/NetworkManagementSocketTagger(  360): setKernelCountSet(10066, 0) failed with errno -1
I/WindowState(  360): WIN DEATH: Window{415f9718 u0 SurfaceView}
I/WindowState(  360): WIN DEATH: Window{415b8f08 u0 com.my.app/com.my.app.MainActivity}
W/WindowManager(  360): Force-removing child win Window{415cc938 u0 SurfaceView} from container Window{415b8f08 u0 com.my.app/com.my.app.MainActivity}

我的应用程序正在显示带有 VideoView 的本地 html 文件,并使用服务保持与服务器的实时连接。我认为这可能与服务有关,但我找不到线索。有没有办法获得这种错误的堆栈信息?

编辑:

我试图在没有任何服务的情况下运行我的应用程序,但问题仍然存在,因此它与服务无关。

编辑2:

这是我启动服务的代码。

活动

     private ServiceConnection mConnection = new ServiceConnection() {
        public void onServiceConnected(ComponentName className,IBinder binder) {

            Log.d("ServiceConnection", "Service connected");

            SocketClientBinder rmBinder = (SocketClientBinder) binder;
            socketService = rmBinder.getService();
            isBound = true;

        }

        public void onServiceDisconnected(ComponentName className) {
            isBound = false;
        }
    };

    public void onDestroy() {
            //we unbind our service to avoid keeping the connection
            if (isBound) {
                unbindService(mConnection);
                isBound = false;
            }
        super.onDestroy();
    }

    public void onStart() {
            super.onStart();
            if( ! isBound) {
                //We bind our activity with our service
                Intent intent = new Intent(this, SocketClientService.class);
                bindService(intent, mConnection, Context.BIND_AUTO_CREATE | Context.BIND_WAIVE_PRIORITY | Context.BIND_ADJUST_WITH_ACTIVITY | Context.BIND_IMPORTANT);
            }
    }
4

1 回答 1

1

空进程

不包含任何活动应用程序组件的进程。保持这种进程处于活动状态的唯一原因是出于缓存目的,以缩短组件下次需要在其中运行时的启动时间。系统通常会杀死这些进程,以平衡进程缓存和底层内核缓存之间的整体系统资源。

http://developer.android.com/guide/components/processes-and-threads.html

于 2013-08-28T07:39:41.400 回答