一开始,我想为糟糕的英语道歉.
有我的问题:
我在android中有一个服务,它在活动运行时在后台运行. (此服务使用指定的时间间隔与服务器同步用户数据).
public class CService extends Service
{
private Boolean isDestroyed;
@Override
public int onStartCommand (Intent intent, int flags, int startId)
{
if (intent != null)
{
new Thread(new Runnable()
{
//run new thread to disable flush memory for android and destroy this service
@Override
public void run ()
{
this.isDestroyed = Boolean.FALSE
while(!this.isDestroyed)
{
//loop until service isn't destroyed
}
}
}).start();
}
return Service.START_NOT_STICKY;
}
@Override
public void onDestroy ()
{
//THIS ISNT CALLED FROM uncaughtException IN ACTIVITY BUT from onDestroy method is this called.
//when is service destroyed then onDestroy is called and loop finish
this.isDestroyed = Boolean.TRUE;
}
}
并且是从onCreateMethod中的活动开始的.此活动实现Thread.UncaughtExceptionHandler并在onCreate方法中注册以捕获活动中的所有意外异常.当活动中的某些东西抛出异常方法时,会调用uncaughtException,并且服务应该以stopService(serviceIntent)停止;但onDestoy在服务中没有被调用.但是当调用的活动中的onDestroy方法(用户按下然后返回按钮)服务成功停止并且调用CService中的onDestoroy时.
public class CActivity extends Activity implements Thread.UncaughtExceptionHandler
{
private Thread.UncaughtExceptionHandler defaultUEH;
@Override
protected void onCreate (Bundle savedInstanceState)
{
this.defaultUEH = Thread.getDefaultUncaughtExceptionHandler();
// create intent for service
Intent serviceIntent = new Intent(this, CService.class);
// run service
startService(serviceIntent);
//set default handler when application crash
Thread.setDefaultUncaughtExceptionHandler(this);
super.onCreate(savedInstanceState);
}
@Override
public void uncaughtException (Thread thread, Throwable ex)
{
//THIS DOESN'T WORK
//when global exception in activity is throws then this method is called.
Intent serviceIntent = new Intent(this, CService.class);
//method to service stop is called. BUT THIS METHOD DON'T CALL onDestroy in CService
stopService(serviceIntent);
defaultUEH.uncaughtException(thread, ex);
}
@Override
public void onDestroy ()
{
//this work fine
Intent serviceIntent = new Intent(this, CService.class);
stopService(serviceIntent);
super.onDestroy();
}
}
活动崩溃时我需要停止后台服务.当android关闭活动并在堆栈中启动先前的活动(即登录屏幕)时,没有用户现在被记录.
谢谢你的建议.