我正在开发一个需要在 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);
}
}