我正试图在地图上创建一个带有过滤器的菜单,其想法是选择多个元素(如屏幕截图)。但是问题在于,每当我按下一个选项时,菜单就会自动隐藏。
因此,每次打开菜单时,我只能点击一个复选框。这种行为不是最好的,因为用户必须打开N次菜单才能选择N个过滤器。
有关如何解决此问题的任何建议或建议?谢谢!
这是我的代码(减少了可读性):
map_menu.xml
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/action_settings"
android:orderInCategory="100"
android:title="@string/action_filtro"
app:showAsAction="always" >
<menu>
<group android:checkableBehavior="all">
<item
android:id="@+id/nav_ciencia"
android:icon="@drawable/ciencia"
android:title="@string/filtro_ciencia"
app:showAsAction="never"
/>
<item
android:id="@+id/nav_comercio"
android:icon="@drawable/comercio"
android:title="@string/filtro_comercio"
app:showAsAction="never"
/>
<item
android:id="@+id/nav_cultura"
android:icon="@drawable/cultura"
android:title="@string/filtro_cultura"
app:showAsAction="never"
/>
<item
android:id="@+id/nav_deporte"
android:icon="@drawable/deporte"
android:title="@string/filtro_deportes"
app:showAsAction="never"
/>
</group>
</menu>
</item>
</menu>
活动
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.map_drawer, menu);
SharedPreferences prefs = getSharedPreferences(Constants.pref_name, Context.MODE_PRIVATE);
MenuItem item_ciencia = menu.findItem(R.id.nav_ciencia);
item_ciencia.setChecked(prefs.getBoolean(Constants.pref_nav_ciencia, false));
MenuItem item_comercio = menu.findItem(R.id.nav_comercio);
item_comercio.setChecked(prefs.getBoolean(Constants.pref_nav_comercio, false));
MenuItem item_cultura = menu.findItem(R.id.nav_cultura);
item_cultura.setChecked(prefs.getBoolean(Constants.pref_nav_cultura, false));
MenuItem item_deporte = menu.findItem(R.id.nav_deporte);
item_deporte.setChecked(prefs.getBoolean(Constants.pref_nav_deporte, false));
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
int id = item.getItemId();
SharedPreferences prefs = getSharedPreferences(Constants.pref_name, Context.MODE_PRIVATE);
SharedPreferences.Editor editor = prefs.edit();
if (id == R.id.action_settings) {
return true;
}else if (id == R.id.nav_ciencia) {
item.setChecked(!item.isChecked());
editor.putBoolean(Constants.pref_nav_ciencia, item.isChecked());
editor.commit();
return true;
} else if (id == R.id.nav_comercio) {
item.setChecked(!item.isChecked());
editor.putBoolean(Constants.pref_nav_comercio, item.isChecked());
editor.commit();
return true;
} else if (id == R.id.nav_cultura) {
item.setChecked(!item.isChecked());
editor.putBoolean(Constants.pref_nav_cultura, item.isChecked());
editor.commit();
return true;
} else if (id == R.id.nav_deporte) {
item.setChecked(!item.isChecked());
editor.putBoolean(Constants.pref_nav_deporte, item.isChecked());
editor.commit();
return true;
}
return super.onOptionsItemSelected(item);
}