2011-12-21 14 views
0

私の開始アクティビティはLoginViewです。 ログインが正しい場合は、startActivity(new Intent(LoginView.this, MainView.class));finish()と呼び出してください。再開後の活動を開始

私のアプリケーションはMainViewに切り替わり、戻るボタンを押すとバック​​グラウンドに移動します。

私の問題:私は常にMainview

MAINVIEWに戻っLoginViewにしていない来アプリ(長押しのホームキー)を再開する場合は

は:

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

助けてください

答えて

0
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); 
       } 
     } 
    }); 
関連する問題