Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
325 views
in Technique[技术] by (71.8m points)

android - Start activity after Resume

My start activity is a LoginView. If the login was correct i call startActivity(new Intent(LoginView.this, MainView.class)); and finish().

So my App switch to the MainView and if i press the back button the app goes to the backgroud.

My Problem:

If i resume the app (long press the home key) i always come back to the LoginView and not to the Mainview

MainView:

protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.mainlayout);
}

Please help

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
  login.setOnClickListener(new View.OnClickListener() 
    {
        public void onClick(View view)
        {
            String name=username.getText().toString();
            SharedPreferences settings = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
            SharedPreferences.Editor editor = settings.edit();
            editor.putString("username", name);
            if(name.equals("xxx"))
                {

                    Intent intent=new Intent(currentactivity.this,nextactivity.class);
                    intent.putExtras(bundle);
                    startActivityForResult(intent,0);
                }   
        }
    });

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...