gpt4 book ai didi

java - 如何只在主要 Activity 中显示菜单?

转载 作者:搜寻专家 更新时间:2023-11-01 08:40:36 24 4
gpt4 key购买 nike

我只想在我的主要 Activity 中显示我的菜单,然后在我的其他 Activity 中使用后退按钮而不是菜单。现在我只是想知道如何从我不想要的 Activity 的操作栏中删除菜单。

我的 list :

<?xml version="1.0" encoding="utf-8"?>

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".Insulter"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<activity
android:name="Favourites"
android:launchMode = "singleInstance">
</activity>

<activity
android:name="Settings"
android:launchMode = "singleInstance">
</activity>


</application>

我的主要 Activity 中的菜单开启器:

@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();

//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
Intent startSettings = (new Intent(Insulter.this,Settings.class));
startActivity(startSettings);
return true;
} else if (id == R.id.exit_the_app) {
finish();
return true;
} else if (id == R.id.favourites) {
Intent startFavs = (new Intent(Insulter.this, Favourites.class));
String[] objects = new String[favs.size()];
favs.toArray(objects);
final ArrayList<String> list = new ArrayList<>(Arrays.asList(objects));
startFavs.putStringArrayListExtra("favs",list);
startActivity(startFavs);
return true;
}


return super.onOptionsItemSelected(item);
}

最佳答案

如果你想在你的任何 Activity 中使用菜单,那么你需要覆盖 onCreateOptionsMenuonOptionsItemSelected...如果您不想要菜单,只需不要在您的 Activity 中覆盖这些方法...

关于java - 如何只在主要 Activity 中显示菜单?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32966953/

24 4 0