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