绑定服务正在运行,但是如果我关闭应用程序,计时器将无效

时间:2013-10-27 20:32:44

标签: android service

我正在开发我的第一个Android应用程序,我遇到了服务问题。我有一个活动和一个服务,在活动中有一个按钮调用服务中的方法,在服务中我有一个计时器,在20秒后显示Logcat中的内容。在活动中,我使用startService(intet)启动服务,然后绑定到它,以便在关闭活动之后使其保持工作,如许多主题中所建议的那样。

如果我点击后退按钮或主页按钮,该应用程序正常工作,但如果我按住主页按钮然后关闭应用程序我看不到日志,但如果我在运行选项卡下转到应用程序管理器,我可以看到我的应用程序和服务正在运行!

我不想使用闹钟管理器。我在这里使用计时器的原因是我想确保我的服务真的有效!我只想在服务中做一些事情,并确保它即使应用程序关闭也能正常工作。

public class BoundService extends Service {

    private final IBinder myBinder = new MyLocalBinder();


    @Override
    public IBinder onBind(Intent intent) {

        return myBinder;
    }


    public int onStartCommand(Intent intent, int flags, int startId)
    {
        return START_STICKY;
    }

    @Override
    public void onDestroy()
    {
        super.onDestroy();
        Toast.makeText(this, "Service Stopped", Toast.LENGTH_LONG).show();

    }

    public void testNotification()
    {
        int interval = 20000; // 20 Second
        Handler handler = new Handler();
        Runnable runnable = new Runnable(){
            public void run() {             
                Log.d("BoundService", "Timer");      
            }
        };

        handler.postAtTime(runnable, System.currentTimeMillis()+interval);
        handler.postDelayed(runnable, interval);

    }   

    public class MyLocalBinder extends Binder {
        BoundService getService() {
            return BoundService.this;
        }
    }   
}

的活动:

   public class MainActivity extends Activity {

    BoundService myService;
    boolean isBound = false;





   public void test(View view)
   {
       myService.testNotification();
   }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        Intent intent = new Intent(this, BoundService.class);

        startService(intent); 
       bindService(intent, myConnection, Context.BIND_AUTO_CREATE);

    }


    private ServiceConnection myConnection = new ServiceConnection() {

        public void onServiceConnected(ComponentName className,
                IBinder service) {
            MyLocalBinder binder = (MyLocalBinder) service;
            myService = binder.getService();
            isBound = true;
        }

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

       };



    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

}

由于

1 个答案:

答案 0 :(得分:1)

手册说:"当你创建一个新的Handler时,它被绑定到创建它的线程的线程/消息队列"。这就是为什么你的处理程序在活动线程中工作,并且在活动被杀死后不能继续处理事件。在您的服务中尝试这样的事情:

Thread worker = null;
Handler handler = null;

@Override
public void onCreate() {
    worker = new Thread(new Runnable() {
        @Override
        public void run() {
            Looper.prepare();
            handler = new Handler();
            Looper.loop();
        }
    });
    worker.start();
}

@Override
public void onDestroy() {
    handler.getLooper().quit();
    worker = null;
    handler = null;
}

修改

您还必须在服务中调用startForeground(使用某些通知),因为如果没有前台服务正在运行且服务崩溃,活动管理器会在关闭应用程序时终止应用程序进程,并且由于START_STICKY将在稍后重新启动。这是奇怪的行为,但我也在真实的设备上看到了这一点。