gpt4 book ai didi

java - 复选框菜单项不起作用

转载 作者:行者123 更新时间:2023-11-29 04:45:58 24 4
gpt4 key购买 nike

我的 menu_check.xml 中有这个但是当我点击检查时没有任何反应所以 Toast 永远不会显示...有什么问题?非常感谢

  <?xml version="1.0" encoding="utf-8"?>
<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">

<item
android:id="@+id/action_selecciontodo"
android:title="@string/check"
android:checkable="true"
app:actionViewClass="android.widget.CheckBox"
app:showAsAction="always" />


</menu>

这在我的 java 类中

 public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_check, menu);

checkBox = (CheckBox) menu.findItem(R.id.action_selecciontodo).getActionView();
checkBox.setText("Select all");

return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.action_selecciontodo:
CheckBox checkBox= (CheckBox) item.getActionView();
if (checkBox.isChecked())
Toast.makeText(getApplicationContext(), "You selected all", Toast.LENGTH_SHORT).show();
return true;
default:
return super.onOptionsItemSelected(item);
}
}

最佳答案

不需要 app:actionViewClass="android.widget.CheckBox"就这样做

在 oncreate 选项菜单中

 @Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater menuInflater = getMenuInflater();
menuInflater.inflate(R.menu.main_menu, menu);
return true;
}

并在 onOptionsItemSelected 中编写此代码

 @Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.menu_bookmark:
if (item.isChecked()) {
item.setChecked(false);
Toast.makeText(MainActivity.this, "Un Checked", Toast.LENGTH_SHORT).show();
} else {
item.setChecked(true);
Toast.makeText(MainActivity.this, "Checked", Toast.LENGTH_SHORT).show();
}
break;
}
return super.onOptionsItemSelected(item);
}

然后在菜单文件夹中的 menu.xml 中这样声明菜单

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

<item android:id="@+id/menu_bookmark"
android:checkable="true"
android:title="Bookmark"/>

因此,当您选中取消选中菜单项时,它会显示 toast 并显示选中或未选中的复选框

关于java - 复选框菜单项不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37203136/

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