Resuming on another activity?

Yes it is possible. Override the onResume() method in Activity B Override protected void onResume() { super.onResume(); Intent b= new Intent(context, A. Class); startActivity(b); finish(); }.

Yes it is possible. Override the onResume() method in Activity B @Override protected void onResume() { super.onResume(); Intent b= new Intent(context, A. Class); startActivity(b); finish(); }.

You can also keep Activity A as your root and add android:finishOnTaskLaunch="true"or android:clearTaskOnLaunch="true" to your manifest. This would force your root activity to be relaunched each time when you press home. Check this link for more info developer.android.com/guide/topics/manif....

I'm wondering if it is possible to re-start my app from an specific activity. For example, if user was in activity B when he pressed home button, I always when to re-start it in activity A. Is this possible?

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions