第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

Android:清除活動堆棧

Android:清除活動堆棧

www說 2023-03-02 16:06:47
我有一個活動:Activity1,應該打開一次(第一次啟動) Activity2,主屏幕。在第一次啟動時在Activity1中做了一些事情之后,每次啟動Activity2都應該打開。我有點想出了如何做到這一點,它工作得很好,但是當我按下手機上的“后退”按鈕時,Activity1突然出現(xiàn)。那么我該如何解決呢?我應該清除堆棧還是什么?這是我的代碼:活動 1:public class MainActivity extends AppCompatActivity {    Button but1;    EditText input1;    TextView error1;    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.welcome_page);        if(getName("username")!=null){            Intent intent = new Intent(MainActivity.this, WelcomePageLast.class);            startActivity(intent);        }        ListenerOnButton();    }    public void ListenerOnButton(){        but1 = (Button)findViewById(R.id.welcome_page_button);        input1 = (EditText)findViewById(R.id.username_input);        error1 = (TextView)findViewById(R.id.name_error);        but1.setOnClickListener(                new View.OnClickListener() {                    public void onClick(View view){                        if (input1.getText().toString().length() < 2){                            error1.setText("Слишком короткое имя!");                        }else {                            error1.setText("");                            Intent intent = new Intent(MainActivity.this, WelcomePageLast.class);                            intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK |Intent.FLAG_ACTIVITY_CLEAR_TOP);                            setName("username", input1.getText().toString());                            startActivity(intent);                        }                    }                }        );    }    public void setName(String key, String value){        SharedPreferences preferences = getSharedPreferences("preferences", MODE_PRIVATE);        SharedPreferences.Editor editor = preferences.edit();        editor.putString(key, value);        editor.apply();    }
查看完整描述

1 回答

?
翻閱古今

TA貢獻1780條經(jīng)驗 獲得超5個贊

它不會讓你回到上次活動


Intent intent = new Intent(MainActivity.this, WelcomePageLast.class);

intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK |Intent.FLAG_ACTIVITY_CLEAR_TOP);

setName("username", input1.getText().toString());

startActivity(intent);

finish();

intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)- 清除活動堆棧。如果您不想清除活動堆棧。請不要使用那個標志。


查看完整回答
反對 回復 2023-03-02
  • 1 回答
  • 0 關(guān)注
  • 106 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號