来自另一个Activity的StopService不起作用?

时间:2013-11-14 07:25:37

标签: android service android-activity

我知道这里已经有很多问题,但它似乎没有用,所以基本上我有一个自定义服务,当它内部的计时器到期时服务工作正常,并调用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。然而似乎什么都没有用,我错过了什么?

感谢名单

1 个答案:

答案 0 :(得分:1)

好,所以显然停止服务不会停止计时器。所以我只是在计时器

上调用了cancel()