gpt4 book ai didi

android - 菜单未出现在主要 Activity 中

转载 作者:行者123 更新时间:2023-11-30 01:09:35 27 4
gpt4 key购买 nike

我现在正在学习 Android,但遇到了一个我可以解决的问题。菜单没有出现在我的简单应用程序的顶部:

<menu 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" tools:context=".MainActivity">

<group android:checkableBehavior="single">

<item android:id="@+id/red_button"
android:title="@string/red"
android:checkable="true"
android:orderInCategory="1"
app:showAsAction="never" />
<item android:id="@+id/green_button"
android:title="@string/green"
android:checkable="true"
android:orderInCategory="1"
app:showAsAction="never"/>
<item android:id="@+id/yellow_button"
android:title="@string/yellow"
android:checkable="true"
android:orderInCategory="1"
app:showAsAction="never"/>
</group>

</menu>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/layout"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.emad.menuapp.MainActivity">


</RelativeLayout>

Java代码:

public class MainActivity extends AppCompatActivity {

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


}


@Override
public boolean onCreateOptionsMenu(Menu menu) {

getMenuInflater().inflate(R.menu.main_menu,menu);

return true;

}

@Override
public boolean onOptionsItemSelected(MenuItem item) {

RelativeLayout lay=(RelativeLayout) findViewById(R.id.layout);


switch (item.getItemId()){
case(R.id.red_button):
if (item.isChecked())
item.setChecked(false);
else item.setChecked(true);

lay.setBackgroundColor(Color.RED);

return true;

case(R.id.green_button):
if (item.isChecked())
item.setChecked(false);
else item.setChecked(true);
lay.setBackgroundColor(Color.GREEN);

return true;

case(R.id.yellow_button):
if (item.isChecked())
item.setChecked(false);
else item.setChecked(true);
lay.setBackgroundColor(Color.YELLOW);

return true;

}


return super.onOptionsItemSelected(item);
}
}

最佳答案

它们是隐藏的,因为您在菜单 XML 文件中设置了 app:showAsAction="never"。使用 always 而不是 never

更新值

关于android - 菜单未出现在主要 Activity 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38551558/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com