Last week, I asked a question about how to finish my progress entirely,someone tell me to do it like this:
finish();
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
intent.addCategory(Intent.CATEGORY_HOME);
startActivity(intent);
but the question is: I try to get JSONObject
from my server,so I new Thread and use handler to
handle this. but now, I can't finish my progress!!
when I start my app , I can find a new progress in DDMS !!!!!what's wrong??