1

我有一个可以交流的服务和一个活动。当我单击按钮(我有 Galaxy s3 只有一个按钮)时,我的活动当然会消失,我的服务会继续运行,但是如果我单击后退(触摸)按钮,那么我的服务就会被破坏。我该如何改变它?我希望服务继续运行,直到活动破坏它。

编辑

这是代码:

服务: public class MyService extends Service { private static final String TAG = "BroadcastService"; 公共静态最终字符串 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);
    }
}
4

2 回答 2

2

当然,当您按下后退按钮时,您的服务将停止。后退按钮大多数调用finish()活动,它被销毁。当您按下另一个按钮(主页按钮)时,它只会最小化您的应用程序,并且只会在以后操作系统想要释放空间时被销毁。

如果您想保持服务运行,请将其设为前台服务,并且不要在活动破坏时停止它。

于 2013-01-07T09:26:11.037 回答
2

你可以把你的应用程序放在后台而不是完成它。

   @Override
    public void onBackPressed() {
     moveTaskToBack(true);
    // super.onBackPressed();
    }
于 2018-04-18T14:15:43.887 回答