I try to go to previous Activity (Activity A) but have problem. Command to this get inside Activity B and I wont to go back to B:

A:

if(...)
{
   B.staticF();
}

B:

static void staticF()
{
   super.onBackPressed();
}

But I can't use super because it's static context.

Of course, I can call

Intent i = new Intent(this, B.class);
startActivity(i);

but I wont to save B look.

link|improve this question

69% accept rate
try by adding this.youractivityname in intent. – Smith Feb 10 at 9:52
I prefer to use a "global" state like this: stackoverflow.com/a/708317/862629 – Sam Felix Feb 10 at 10:03
feedback

1 Answer

up vote 1 down vote accepted

Why not just use something like a shared preference to save the state? and then use the intent to go back and in the onCreate method get the preferences and populate any views with the data you wanted to save

link|improve this answer
Unless there is no more easier way? – user1136218 Feb 10 at 9:58
Hmm, that is what I would do and Im pretty experienced with android, what is in the UI of activity B? – SmartLemon Feb 10 at 10:18
public class B extends Activity { ... } – user1136218 Feb 10 at 10:40
Have you ever considered using fragments? – SmartLemon Feb 10 at 10:46
I'm 3 months in android. I wont set B data in activity C and get it out A – user1136218 Feb 10 at 10:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.