- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有线程服务,从 Activity 我调用启动服务(来自 Activity::onDestroy())和停止服务(activity::onCreate())。
StopService() 立即返回,但我的 Service::OnDestroy 调用了这么多时间,很晚了,为什么?如何在调用 StopService() 时立即调用 Service::OnDestroy。
Activity 课
MyActivity::OnDestroy()
{
System.out.println("MyActivity-OnDestroy Start");
// we are leaving activity so start service
Intent svcIntent = new Intent(this,MyService.class);
svcIntent.putExtra("SomeData", m_iData);
startService(svcIntent);
System.out.println("MyActivity-OnDestroy, startservice called");
..
..
System.out.println("MyActivity-OnDestroy, End");
}
MyActivity::OnCreate()
{
System.out.println("MyActivity-onCreate Start");
// if service running stop it.
if (m_bCalledFromNotification)
{
System.out.println("Stopping Service");
boolean b = stopService(new Intent(this,AudioService.class));
System.out.println("Stopping Service, Status="+b);
}
System.out.println("MyActivity-onCreate End");
}
@Override
public IBinder onBind(Intent intent)
{
return null;
}
// When service is created
@Override
public void onCreate()
{
// initialize service data
System.out.println("MyService Created");
}
@Override
public void onDestroy()
{
System.out.println("In MyService::onDestroy");
m_UIUpdater.interrupt();
System.out.println("In MyService::onDestroy, updater thread interrupted");
..
System.out.println("My Service Stopped");
}
// This is the old onStart method that will be called on the pre-2.0
// platform. On 2.0 or later we override onStartCommand() so this
// method will not be called.
@Override
public void onStart(Intent intent, int startId)
{
StartupHandler(intent,startId);
}
@Override
public int onStartCommand(Intent intent, int flags, int startId)
{
StartupHandler(intent,startId);
// We want this service to continue running until it is explicitly
// stopped, so return sticky.
return START_STICKY;
}
public void StartupHandler(Intent intent, int startid)
{
// send notification
System.out.println("In MyService::StartupHandler, Sending notification");
// start thread
m_UIUpdater = new Thread(new Runnable()
{
public void run()
{
System.out.println("In MyService::Thread::Run");
while (!Thread.interrupted())
{
// check update
System.out.println("In MyService::Thread::Run::got update and loop for next update");
}
}
}
}
12-17 09:25:44.462: INFO/System.out(314): MyActivity-OnDestroy Start
..
12-17 09:25:44.493: INFO/System.out(314): MyActivity-OnDestroy, startservice called
..
12-17 09:25:51.102: INFO/System.out(314): MyActivity-OnDestroy, End
12-17 09:25:51.153: INFO/System.out(314): MyService Created
12-17 09:25:51.172: INFO/System.out(314): In MyService::StartupHandler, Sending notification
12-17 09:25:51.273: INFO/System.out(314): In MyService::Thread::Run
12-17 09:25:51.302: INFO/System.out(314): In MyService::Thread::Run::got update and loop for next update
..
..
..
12-17 09:25:59.903: INFO/System.out(314): MyActivity-onCreate Start
..
12-17 09:26:00.461: INFO/System.out(314): Stopping Service
12-17 09:26:00.471: INFO/System.out(314): Stopping Service, Status=true
12-17 09:26:01.363: INFO/System.out(314): MyActivity-onCreate End
12-17 09:26:01.421: INFO/System.out(314): In MyService::OnDestroy
12-17 09:26:01.421: INFO/System.out(314): In MyService::OnDestroy, updater interrupted
12-17 09:26:01.591: INFO/System.out(314): My Service Stopped
最佳答案
在我看来 onDestroy
当 GC 回收服务时调用。
试试 m_UIUpdater.interrupt();
在您的 onStop
.
关于Android::Service OnDestroy 调用很晚,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4470222/
我正在使用ScheduledExecutorService使用 scheduleAtFixedRate 方法每小时提供一次数据库更新。问题是它逐渐变得更晚 - 在长期服务中我一直在记录它并且每天大约一
我有一个连接到 UILabel 的 UIDatePicker。我希望用户选择 18 年前的生日(年龄限制)。所以我用这一行来设置 maximumDate 值: datePicker.maximumDa
当我重新启动设备时,我收到 BOOT_COMPLETED广播比其他应用程序慢得多(大约 10-15 秒后)。 我看过this .但我不认为这是完全正确的。我如何(我认为)证明它是错误的: (让我们将
我有一个从 DatePickerDialog 的 onDateSetListener 调用的 TimePickerDialog,以便允许用户依次选择日期和时间。我将信息存储在日历对象 calendar
我需要查找客户是否在上一年和下一年进行了订阅,以及下一年有多少订阅是新的或被取消的。 示例数据: 身份证订阅年份120101201112019220112201232010 考虑这种方法:在订阅年份中
我必须编写一个 JavaScript 函数来检查两个日期(格式为 dd/MM/yyyy)的时间间隔是否最多为 3 个月。 我可以从两个文本框中检索两个值(无需检查格式,我已经获得了一个可以自动正确设置
我有一个输入框,类型为“时间”。我想将迟到时间 (23:00pm) 作为最小值,将早期时间 (6:00am) 作为最大值 - 创建一个 23pm - 6am 的范围。 (即中午 11 点、中午 12
我是一名优秀的程序员,十分优秀!