6

我有一个带有服务的应用程序。服务由应用程序在创建方法的主要活动中启动。当我退出应用程序时出现我的问题:服务停止,有时立即重新启动,有时最近重新启动。我在 4.1.2 和 2.3.6 版本中进行了测试。在 2.3.6 版本中不再提供服务。我的方法错了吗?在停止时间和重新启动时间之间,必须阻止的呼叫可能会到来。退出应用程序时有什么方法可以不停止服务?注意:我不能使用远程服务。

我将 startForeground 添​​加到服务但同样的问题。当我退出应用程序时服务停止并且即使我看到通知也不会重新启动版本 2.3.3。但是 phoneStateListener 取空值我如何确保退出应用程序时服务不会停止

 //application main metod
@Override
protected void onCreate(Bundle savedInstanceState) {              
//.....

    startService(new Intent(getApplicationContext(), MyPhoneStateListener.class));
}




 @Override
 public int onStartCommand(Intent intent, int flags, int startId)
 {
    setCallListener();    
    setNoti();
    return START_STICKY;
 }

 private void setCallListener()
 {
        try
        {
            if (phoneStateListener==null)
            {

              phoneStateListener = new StateListener();
              telephonymanager = (TelephonyManager)getSystemService(TELEPHONY_SERVICE);
                 telephonymanager.listen(phoneStateListener,PhoneStateListener.LISTEN_CALL_STATE);
            }
        }
        catch(Exception ex)
        { 

        }
    }

私人无效 setNoti() {

    Notification notification= new Notification(R.drawable.ic_launcher,  getResources().getString(R.string.app_name), System.currentTimeMillis());

    Intent main = new Intent(this, MainActivity.class);

    main.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);

    PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, main,  PendingIntent.FLAG_UPDATE_CURRENT);

    notification.setLatestEventInfo(this, getResources().getString(R.string.app_name), getResources().getStringArray(R.array.blockstate)[Sabitler.ShieldState].toString(), pendingIntent);

    notification.flags |= Notification.FLAG_FOREGROUND_SERVICE | Notification.FLAG_NO_CLEAR;

    startForeground(123456, notification);  
}

我按照 Dhawal Sodha 的建议将设置 callstatelistener 从服务更改为广播,但在这种情况下阻止不需要的呼叫会变慢。我认为广播 TelephonyManager 会初始化每个呼叫。广播代码如下。当我使用服务时,当主要活动退出时,服务在版本 2.3.3 中停止。任何想法 ?广播还是服务?怎样才能让广播更快?每个调用变量和对象在广播中再次初始化。

public class PhoneStateBroadcastReceiver extends BroadcastReceiver{

    MyCustomStateListener myCustomStateListener;
    TelephonyManager telephonymanager;
    @Override
    public void onReceive(Context context, Intent intent) 
    {
        try
        {
            //Log.e("receiver1",String.valueOf(System.currentTimeMillis()));

            telephonymanager = (TelephonyManager) context.getSystemService(context.TELEPHONY_SERVICE);
            myCustomStateListener = new MyCustomStateListener(context,telephonymanager);
            telephonymanager.listen(myCustomStateListener, PhoneStateListener.LISTEN_CALL_STATE);
            //Log.e("receiver2",String.valueOf(System.currentTimeMillis()));
            telephonymanager.listen(myCustomStateListener, PhoneStateListener.LISTEN_NONE);
        }
        catch(Exception ex)
        { 
            Toast.makeText(context,"setCallListener:"+ex.toString(), Toast.LENGTH_SHORT).show();
        }
    }   
}
4

2 回答 2

7

Add this code in your onStartCommand() method

  showToast("onStart");

  Intent intent = new Intent(this, NotStickyActivity.class);
  intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
  PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, 0);

  Notification noti = new Notification.Builder(getApplicationContext())
              .setContentTitle("Pratikk")
              .setContentText("Subject")
              .setSmallIcon(R.drawable.ic_launcher)
              .setContentIntent(pendingIntent)
              .build();

  startForeground(1234, noti);     

  return Service.START_STICKY;

It will not stops your service.

于 2014-06-26T10:00:18.377 回答
7

您是用 开始服务startService吗?如果是这样,当您结束活动时,该服务不会绑定到任何东西,并且可以被系统停止。

如果您想运行后台服务而不考虑您的活动,请使用startForeground并提供持续通知。

请参阅服务参考:http: //developer.android.com/reference/android/app/Service.html

更新

完成你的应用程序System.exit(0)?当然,您的服务会停止,这会杀死您的进程。你永远不应该退出这样的应用程序——只是finish()你的活动。

于 2013-04-29T11:02:35.080 回答