停止服务导致孤立线程

时间:2011-06-11 22:39:13

标签: android service background

我将继续学习“Pro Android 2”这本书,研究由两个类组成的Service示例:BackgroundService.java和MainActivity.java。 MainActivity类如下所示,并有几个按钮。解除绑定按钮unbindBtn会停止服务,但似乎没有做其他事情,比如杀死服务启动的线程。

    public class MainActivity extends Activity {
        private static final String TAG = "MainActivity";

        @Override
        public void onCreate(Bundle savedInstanceState)
        {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.main);

            Log.d(TAG, "starting service");

            Button bindBtn = (Button)findViewById(R.id.bindBtn);
            bindBtn.setOnClickListener(new OnClickListener() {

                @Override
                public void onClick(View arg0) {
                    Intent backgroundService = new Intent(MainActivity.this, com.marie.mainactivity.BackgroundService.class);
                    startService(backgroundService);
                }
            });

            Button unbindBtn = (Button)findViewById(R.id.unbindBtn);
            unbindBtn.setOnClickListener(new OnClickListener() {
                @Override
                public void onClick(View arg0) {
                    stopService(new Intent(MainActivity.this, BackgroundService.class));
                }
            });
        }
    }

documentation表示“如果您的服务要进行任何CPU密集型工作或阻止操作......,您应该在服务中创建一个新线程来完成这项工作。”而这正是BackgroundService类在下面所做的。如下所示,我在线程的run()方法中添加了一个while(true)循环,以查看当我停止服务时线程发生了什么。

    public class BackgroundService extends Service {
        private NotificationManager notificationMgr;

        @Override
        public void onCreate() {
            super.onCreate();

            notificationMgr = NotificationManager)getSystemService(NOTIFICATION_SERVICE);

            displayNotificationMessage("starting Background Service");

            Thread thr = new Thread(null, new ServiceWorker(), "BackgroundService");
            thr.start();
        }   

        class ServiceWorker implements Runnable
        {
            public void run() {
                // do background processing here...

                long count = 0;
                while (true) {
                    if (count++ > 1000000)
                    {
                        count = 0;
                        Log.d("ServiceWorker", "count reached");
                    }
                }

                //stop the service when done...
                //BackgroundService.this.stopSelf();
            }
        }

        @Override
        public void onDestroy()
        {
            displayNotificationMessage("stopping Background Service");
            super.onDestroy();
        }

        @Override
        public void onStart(Intent intent, int startId) {
            super.onStart(intent, startId);
        }

        @Override
        public IBinder onBind(Intent intent) {
            return null;
        }

        private void displayNotificationMessage(String message)
        {
            Notification notification = new Notification(R.drawable.note, message, System.currentTimeMillis());

            PendingIntent contentIntent = PendingIntent.getActivity(this, 0, new Intent(this, MainActivity.class), 0);

            notification.setLatestEventInfo(this, "Background Service", message, contentIntent);

            notificationMgr.notify(R.id.app_notification_id, notification);
        }
    }

当我在MainActivity类中按下取消绑定按钮unbindBtn时,我相信此示例中的服务将被停止。但是从我在logcat中看到的内容,服务启动的线程继续运行。这就像线程现在是某种孤儿,没有明显的方法可以阻止它。我已经看到其他源代码在线程的run()方法中使用while(true)循环。除非提供一种突破循环的方法,否则这看起来很糟糕。那通常是怎么做的?或者是否有其他方法可以在启动它的服务停止后终止线程?

1 个答案:

答案 0 :(得分:4)

您应该提供“正在运行”boolean

while(running) {
    //do your stuff
}

你想要做一些你可以更新的东西。也许您的Service onDestroy()方法应该在stopProcessing()上调用Runnable方法,这会将“正在运行”boolean设置为false