我想將itemId從主活動傳遞到另一活動。 現在我寫了下面的代碼,但我不想要這樣,只是我希望從這個活動傳遞itemId到另一個選項時。在另一項活動中,我將寫入開關盒選項。如何將onOptionsItemSelected項目ID從主活動傳遞到另一活動
這裏我的代碼:
public boolean onOptionsItemSelected(MenuItem item) {
super.onOptionsItemSelected(item);
switch(item.getItemId()) {
case android.R.id.home:mDrawerToggle.onOptionsItemSelected(item);
case R.id.action_settings:SettingsFragment fragmentS = new SettingsFragment();
getSupportFragmentManager().beginTransaction().replace(R.id.content_frame, fragmentS).commit();
break;
}
return super.onOptionsItemSelected(item);
}
你嘗試'Intents'? –
從你的代碼看來,你想要從一個片段傳遞值到另一個片段。如果是這樣,你應該編輯這個問題。它說你想把價值從一個活動傳遞給另一個活動。我按照片段回答。 – Rohit5k2