Skip to content Skip to sidebar Skip to footer

Finish The Activity After Receiving Response From Server

I want to finish the activity when received complete response from server in another java class. Category.java This is main activity public void onListItemClick(ListView parent, V

Solution 1:

you can use your context reference for this

Intent intent = new Intent(context,nextActivity.class);
context.startActivity(intent);
((Activity) context).finish();

Post a Comment for "Finish The Activity After Receiving Response From Server"