3

これについてはすでに多くの質問があることはわかっていますが、うまくいかないようです。そのため、基本的にカスタム サービスがあり、サービスは内部のタイマーが期限切れになると正常に動作し、stopservice メソッドを呼び出します。ただし、別のアクティビティからサービスを停止しようとすると、機能しませんか?

カスタムサービスのコード:

public class ConnectionService extends Service {

Intent service_intent;

Timer t;
int expiry_time = 0;

int timer_tick_starter = 0;

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

@Override
public void onCreate() {
    t = new Timer();
}

@Override
public int onStartCommand(Intent intent, int flags, int startId) {

    try {

        service_intent = intent;

        Log.d("onConnectionService", "onStartCommand");

        expiry_time = Integer.parseInt(intent.getStringExtra("expiry"));

        //convert the minutes to milliseconds
        timer_tick_starter = (expiry_time * 60000);

        Log.d("onConnectionService", "Expiry Time (in milliseconds) " + timer_tick_starter);


    } catch (Exception e) {

        Log.d("onConnectionService", e.getMessage().toString());

    }

    //timer will only start to run on the expiry_time which will then close the connection
    t.schedule(new TimerTask() {
        @Override
        public void run() {

            Log.d("onConnectionService", "inside expiry time");
            //close the connection

            stopService(service_intent);

                       }
    }, 30000);


    return START_NOT_STICKY;
}

@Override
public boolean stopService(Intent name) {

    Log.d("onConnectionService", "StopService called");
    String message = name.getStringExtra("msg");
    //broadcast sender
    Intent intent = new Intent();
    intent.putExtra("msg", message);
    intent.setAction("fi.android.inetkeyapplication.CUSTOM_INTENT");
    intent.putExtra("is_selected", UserConnectionState.getInstance().is_selected);

    sendBroadcast(intent);

    Log.d("onConnectionService", "Service has been killed");

    return super.stopService(name);
}

@Override
public void onDestroy() {

    Log.d("onConnectionService", "Destroy called");

}

}

here I start the service from onCreate:

  Thread thread = new Thread(new Runnable() {
        @Override
        public void run() {

            Log.d("onConfigurationActivity", "Service starting ");
            // Intent i = new Intent(ConfigurationActivity.this, ConnectionService.class);
            Intent i = new Intent(context, ConnectionService.class);

            i.putExtra("expiry", "1");

            startService(i);

        }
    });
    thread.start();

ただし、後でアプリを開始したアクティビティからアプリを強制終了しようとすると、機能しません。

  Button exit_button = (Button) findViewById(R.id.btnExit);
    connect_button.setTypeface(roboto_light);

    exit_button.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            //do closing call
            response_close = "";


            //need to close service
            //also kill the service
            Log.d("onConfigurationActivity", "killing service");
            Intent intent = new Intent(context, ConnectionService.class);
            intent.putExtra("msg", "You have been disconnected");
            stopService(intent);
    }
    });

私は自分のクラスを試しました - ConfigurationActivity.this (コンテキストとして) と私は onCreate 内で取得するカスタム コンテキストを使用している時点で (これ) を試しました。しかし、何も機能していないようです。何が欠けていますか?

ありがとう

4

1 に答える 1

1

どうやらサービスを停止してもタイマーは停止しません。だから私はちょうどタイマーで cancel() を呼び出しました

于 2013-11-14T07:55:06.777 に答える