I have a service that has its own thread running on background. I\'d like to kill that service including the thread.
I created the thread like this and run it.
@Override protected void onDestroy() { // TODO Auto-generated method stub super.onDestroy(); Thread.currentThread().interrupt(); }