how to force stop all checked application from list view in android programmatically
问题 In below given code I want to kill (forcestop) all the checked applications but after restarting my application it's showing the name of these killed applications again. I really don't know if they're really killed or not. Why this is so? kill.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { //Killing selected Apps String savedapp; int code = 0; int count = lv.getAdapter().getCount(); for (int j = 0; j < count; j++) { if (lv.isItemChecked(j)) { Intent ints =