2012-04-01 10 views
16

私はサービスを記述し、このコードを持っている:実行中のサービスを停止するにはどうすればいいですか?

public class navigation_web extends Service { 

    Context context; 

    public void navigation() { 
     Cursor mCur = getContentResolver().query(Browser.BOOKMARKS_URI, 
      Browser.HISTORY_PROJECTION, null, null, null); 
     mCur.moveToFirst(); 
     if (mCur.moveToFirst() && mCur.getCount() > 0) { 
      while (mCur.isAfterLast() == false) { 
       Log.v("titleIdx", 
        mCur.getString(Browser.HISTORY_PROJECTION_TITLE_INDEX)); 
       Log.v("urlIdx", 
        mCur.getString(Browser.HISTORY_PROJECTION_URL_INDEX)); 
       mCur.moveToNext(); 
      } 
     } 
     // Browser.clearSearches(getContentResolver()); 
    } 

    public void onCreate() { 
     // Browser.clearHistory(getContentResolver()); 
     // Browser.clearSearches(getContentResolver()); 
     navigation(); 
     // super.onCreate(); 
    } 

    @Override 
    public int onStartCommand(Intent intent, int flags, int startId) { 
     return super.onStartCommand(intent, flags, startId); 
    } 

    @Override 
    public void onDestroy() { 
     super.onDestroy(); 
    } 

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

私はそれを呼び出すことができますので、それを呼び出した後、私は

startService(new Intent(Finalv2Activity.this, navigation_web.class)); 

を使用して、アクティビティからこのサービスを呼び出すことができますが、私はこの実行中のサービスを停止したいです再び。これどうやってするの。ありがとう

+0

関連するhttp://stackoverflow.com/questions/5555765/stop-service-in-android –

答えて

35

stopService(Intent intent)という別の方法があります。 サービス内でstopSelf()に電話することができます。

24

アクティビティstopService()メソッドを使用:

stopService(new Intent(ActivityName.this, ServiceClassName.class)); 
3

stopService(Intent intent)

関連する問題