1

私にはコミュニケーションをとるサービスと活動があります。ボタンをクリックすると(Galaxy s3のボタンは1つだけです)、もちろんアクティビティは消えてサービスは実行され続けますが、戻る(タッチ)ボタンをクリックするとサービスが破棄されます。どうすれば変更できますか?アクティビティによってサービスが破棄されるまで、サービスを実行し続けたいです。

編集

コードは次のとおりです。

サービス:public class MyService extends Service {private static final String TAG = "BroadcastService"; public static final String BROADCAST_ACTION = "com.websmithing.broadcasttest.displayevent"; プライベートファイナルハンドラーハンドラー=newHandler(); プライベートインテントインテント; intカウンター=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()はアクティビティで最も多く呼び出され、破棄されます。もう一方のボタン (ホーム ボタン) を押すと、アプリが最小化されるだけであり、後で OS がスペースを解放する必要がある場合にのみ破棄されます。

サービスを実行し続けたい場合は、それをフォアグラウンド サービスにし、アクティビティの破棄時に停止しないでください。

于 2013-01-07T09:26:11.037 に答える