我的服务在后退按钮后停止
Posted
技术标签:
【中文标题】我的服务在后退按钮后停止【英文标题】:My service stop after the back button 【发布时间】:2012-12-20 23:59:18 【问题描述】:我有一个可以交流的服务和一个活动。 当我单击按钮(我有 Galaxy s3 只有一个按钮)时,我的活动当然会消失,我的服务会继续运行,但是如果我单击后退(触摸)按钮,那么我的服务就会被破坏。 我该如何改变它?我希望服务继续运行,直到活动破坏它。
编辑
代码如下:
服务: 公共类 MyService 扩展服务 私人静态最终字符串标签=“广播服务”; 公共静态最终字符串 BROADCAST_ACTION = "com.websmithing.broadcasttest.displayevent"; 私有最终处理程序处理程序=新处理程序(); 私人意图; 整数计数器 = 0;
@Override
public void onCreate()
super.onCreate();
intent = new Intent(BROADCAST_ACTION);
@Override
public void onStart(Intent intent, int startId)
// handler.removeCallbacks(sendUpdatesToUI);
handler.postDelayed(sendUpdatesToUI, 1000); // 1 second
private Runnable sendUpdatesToUI = new Runnable()
public void run()
DisplayLoggingInfo();
handler.postDelayed(this, 1000); // 10 seconds
;
private void DisplayLoggingInfo()
intent.putExtra("counter", String.valueOf(++counter));
sendBroadcast(intent);
@Override
public IBinder onBind(Intent intent)
return null;
@Override
public void onDestroy()
handler.removeCallbacks(sendUpdatesToUI);
super.onDestroy();
活动:
public class MainActivity extends Activity
private static final String TAG = "BroadcastTest";
private Intent intent;
@Override
public void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
intent = new Intent(this, MyService.class);
startService(intent);
registerReceiver(broadcastReceiver, new IntentFilter(MyService.BROADCAST_ACTION));
private BroadcastReceiver broadcastReceiver = new BroadcastReceiver()
@Override
public void onReceive(Context context, Intent intent)
updateUI(intent);
;
@Override
public void onDestroy()
super.onPause();
unregisterReceiver(broadcastReceiver);
stopService(intent);
private void updateUI(Intent intent)
String counter = intent.getStringExtra("counter");
Log.d(TAG, counter);
TextView txtCounter = (TextView) findViewById(R.id.textView1);
txtCounter.setText(counter);
【问题讨论】:
能否添加一些代码 你是如何开始服务的? 【参考方案1】:当您按下返回按钮时,您的服务当然会停止。后退按钮在活动上最多调用finish()
,它被销毁。当您按下另一个按钮(主页按钮)时,它只会最小化您的应用程序,并且只会在以后操作系统想要释放空间时被销毁。
如果您想保持服务运行,请将其设为前台服务,并且不要在 Activity 销毁时停止它。
【讨论】:
好的,谢谢,但是现在当我单击返回按钮并返回后,看起来我得到了 2 项服务,因为我收到的数据量翻了一番。这是为什么呢? 您应该在您的应用程序中为其设置一个选项以停止您的服务,或者将您的服务的停止与您的onDestroy()
中的某些条件联系起来。要使其成为前台,您只需在 onStart(...)
中调用 startForeground(notificationId, notification)
并在 Service
中调用 onStartCommand(...)
,然后向该方法传递一个状态栏通知,该通知将在您的服务运行时可见。
我刚刚停止了服务,当它达到 100(它是从 0 开始的计数器),我得到 2 个服务的原因是这条线被禁用:handler.removeCallbacks(sendUpdatesToUI);在服务的 onStart 方法上。现在可以了,但你认为我做得好吗?【参考方案2】:
您可以将您的应用置于后台,而不是完成它。
@Override
public void onBackPressed()
moveTaskToBack(true);
// super.onBackPressed();
【讨论】:
以上是关于我的服务在后退按钮后停止的主要内容,如果未能解决你的问题,请参考以下文章