2

ユーザーがアプリケーションを閉じて前のアクティビティを終了した場合でも、最後のアクティビティを復元するにはどうすればよいですか。つまり、ユーザーが閉じていたアプリケーションを再度開くと、最後のアクティビティが表示され、エミュレータの戻るボタンを押すと、以前のアクティビティが表示されず、エミュレータのホームページに移動するということです。エミュレーター(前のアクティビティが終了するようなものなので、前のアクティビティに戻ることはありません)。助けが必要です。非常に明確に説明してください。申し訳ありませんが、私はアンドロイドが初めてです。できればもう 1 つリクエストをお願いします。順を追って説明していただけますか。

これが私の最初の活動です

public class MainActivity extends Activity {

public EditText txt_Emp, txt_Email, txt_Security;
public ImageButton btn_Submit, btn_Generate, btn_Resend;
final Context context = this;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);


     txt_Emp = (EditText) findViewById(R.id.txt_emp);
     txt_Email = (EditText) findViewById(R.id.txt_email);
     txt_Security = (EditText) findViewById(R.id.txt_code);
     btn_Submit = (ImageButton) findViewById(R.id.btn_submit);
     btn_Generate = (ImageButton) findViewById(R.id.btn_generate);
     btn_Resend = (ImageButton) findViewById(R.id.btn_resend);


     btn_Generate.setOnClickListener(new OnClickListener() {
     @Override
     public void onClick(View v) 
     {
         String email = txt_Email.getText().toString();
         String employee = txt_Emp.getText().toString();

         //Hashcode
                         //this will get the hashcode


            //SENDING AN EMAIL
                              // this is for sending an email containing the hashcode


    btn_Submit.setOnClickListener(new OnClickListener() {

    @Override
    public void onClick(View v) {
        //this will proceed to the next activity if the code is correct
            }   
                         }

2回目の活動です

public class WelcomeActivity extends Activity {

TextView txtWelcome;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_welcome);

    quit = (Button) findViewById(R.id.button1);

    quit.setOnClickListener(new OnClickListener() {
    public void onClick(View v) {

               //this button will direct to the 1st activity.

        }
        });
       }

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.welcome, menu);
    return true;
}
}

ユーザーがユーザーをクリックしなかった場合、アプリを閉じても2番目のアクティビティにとどまり、エミュレーターでリターンをクリックすると、アプリが最初のアクティビティに戻ることはありません。そして、私は何の考えも持っていません。どうもありがとうございました。

4

1 に答える 1