15

我希望即使应用程序关闭(kiiled)或者即使用户不启动应用程序,该服务也能运行。我希望在安装应用程序后启动服务,从这一点开始,服务应该始终运行。

public class notifications extends Service {

        @Override
        public IBinder onBind(Intent intent) {
                // TODO Auto-generated method stub
                return null;
        }

        @Override
    public void onCreate() {
    }

    @Override
    public void onStart(Intent intent, int startId) {
                final Handler handler = new Handler();
                final Runnable runb = new Runnable()
                {
                    public void run()
                    {
                        Toast.makeText(getApplicationContext(), " Service Started", Toast.LENGTH_LONG).show();
                        handler.postDelayed(this, 10000);
                    }
                };
                handler.postDelayed(runb, 0);

    }
    @Override
    public void onDestroy() {

    }
}*/

public class notifications extends IntentService
{
        private Timer mBackGroundTimer;
        public notifications()
    {
        super("myservice");
        this.mBackGroundTimer=new Timer();
    }
        @Override
        protected void onHandleIntent(Intent intent)
    {
        // TODO Auto-generated method stub
        mBackGroundTimer.schedule(new TimerTask()
        {
            public void run()
            {
                try
                {
                        Notification("This is message from Dipak Keshariya (Android Application Developer)", "This is Android Notification Message");
                }
                catch (Exception e)
                {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
        },1000, 2000);
    } // END onHandleIntent()
        private void mStopTimer()
    {
        //Call this whenever you need to stop the service
        mBackGroundTimer.cancel();
    }

        private void Notification(String notificationTitle, String notificationMessage) {
            NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
            android.app.Notification notification = new android.app.Notification(R.drawable.ic_launcher, "A New Message from Dipak Keshariya (Android Developer)!",
            System.currentTimeMillis());

            Intent notificationIntent = new Intent(this, MainActivity.class);
            PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
            notification.setLatestEventInfo(getApplicationContext(), notificationTitle, notificationMessage, pendingIntent);
            notificationManager.notify(10001, notification);
        }
}

我怎么能这样做?

4

4 回答 4

10

查看您的代码,您似乎希望您的服务定期发出通知。

就让它连续运行而言,请记住,根据设计,Android 系统可能随时终止您的服务进程。你可以稍微影响一下,但你不能阻止系统杀死你的服务。

因此,对于您的定期操作,最好将 AlarmManager 与重复警报一起使用。您的服务基本上是一次性的,即执行一次操作然后退出。

对于一些代码,例如看这里:

Android:警报管理器

于 2013-09-16T11:55:59.257 回答
5

您需要实现 Service 类的 OnStartCommand 方法,并在其中返回 Service.START_STICKY。那会成功的。如果您终止应用程序,该服务将继续在后台运行。但是,如果您重新启动手机,我认为您需要在您的应用程序中实现其他东西,以及启动服务或类似的东西。

于 2015-11-06T13:24:34.310 回答
1

您的要求是在后台运行该服务。您在使用该服务的正确轨道上,因为这仅用于后台运行目的。

从活动中,您可以通过以下方式启动服务

startService(new Intent(activityName.this, serviceName.class));

或者如果您的应用程序没有任何活动,那么您可以将服务设置为应用程序的默认和主启动器,方法是

<service android:name="name of the service" >
 <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
 </service>
于 2013-09-16T11:47:36.890 回答
1

我认为这个问题的答案是这样的:https ://developer.android.com/training/sync-adapters/creating-sync-adapter.html

Google I/O 2013 中引入的同步适配器。

于 2015-05-10T20:06:08.943 回答