1

こんにちは友人私は解決すべき1つの問題があります...ActivityからonDestroy()メソッドを呼び出したら、サービスを完全に破棄したいと思います。しかし、私の問題は、それを完全に破壊することができないということです..バックグラウンドで実行を続け、私が試したサンプルコードを共有しています..

    //Activity Class
    public class ServiceToAct extends Activity {
    private static final String TAG = "BroadcastEvent";
    private Intent intent;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        intent = new Intent(this, BroadcastService.class);
        startService(intent);
        registerReceiver(broadcastReceiver, new       IntentFilter(myService.BROADCAST_ACTION));
    }

    /*@Override
    protected void onResume() {
        super.onResume();

    }*/

    @Override
    protected void onPause() {
        super.onPause();
        unregisterReceiver(broadcastReceiver);

    }

    @Override
    protected void onDestroy() {

        stopService(intent);

        Toast.makeText(this, "Destroy Completely", Toast.LENGTH_LONG).show();
    }

    private BroadcastReceiver broadcastReceiver = new BroadcastReceiver() {
        @Override
        public void onReceive(Context context, Intent intent) {

        }
    };
}

// service class
public class myService extends Service {

    private static final String TAG = "BroadcastEvent";
    public static final String BROADCAST_ACTION = "com.service.activity.myService";
    private final Handler handler = new Handler();
    Intent intent;


    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }

    @Override
    public void onCreate() {
        super.onCreate();
        Toast.makeText(this, "created", Toast.LENGTH_LONG).show();
        intent = new Intent(BROADCAST_ACTION);
    } 

    @Override
    public void onStart(Intent intent, int startId) {
        super.onStart(intent, startId);
        Toast.makeText(this, "start", Toast.LENGTH_LONG).show();
        handler.removeCallbacks(sendToUI);
        handler.postDelayed(sendToUI, 1000); 
    }

    @Override
    public void onDestroy() {
        super.onDestroy();
        stopSelf();
        //stopService(intent);
        Toast.makeText(this, "Destroy", Toast.LENGTH_LONG).show();
    }

    private Runnable sendToUI = new Runnable() {

        @Override
        public void run() {
            myData();
            handler.postDelayed(this, 10000); 
        }
    };

    private void myData() {

        Log.d(TAG, "keep on entering");
        Toast.makeText(this, "Keep on despling in UI", Toast.LENGTH_LONG).show();

        sendBroadcast(intent);
    }
}

ここで実際にサービスからUIを更新したいのですが、すべてが機能していますが、サービスを破棄してもmyData()メソッドを呼び出し続け、アプリケーションを閉じるとToastメッセージが表示されます。私の問題は、サービスが破棄された後、そのトーストメッセージが必要ないことです。サービスを破棄するstopService(intent)メソッドを使用しましたが、バックグラウンドメソッドmyData()は引き続き呼び出します。

4

3 に答える 3

0

サービスを停止するには、これを完全に使用してください。

myActivity.java

@Override
    public void onDestroy() {
      stopService(intent); 
        super.onDestroy();
        Toast.makeText(this, "Destroy", Toast.LENGTH_LONG).show();
    }

service.java

@Override
    public void onDestroy()
    {

        stopSelf();
        super.onDestroy();
    }
于 2012-05-25T06:17:50.023 に答える
0

UIを更新した後、stopService()メソッドを使用します

また

startServiceを使用する代わりに、アクティビティでbindServiceを使用します。活動が破壊されると、サービスも破壊されます

于 2012-05-25T06:19:31.643 に答える
0

onXxx()を直接呼び出さない方がよいでしょう。代わりに、アクティビティでstopService(Intent i)を使用し、サービスでstopSelf()を使用して停止します。

于 2012-05-25T06:22:27.587 に答える