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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…