text 活动的3点菜单
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 活动的3点菜单相关的知识,希望对你有一定的参考价值。
//In MainActivity
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.menu, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
int id = item.getItemId();
if (id == R.id.all) {
display = "all";
lv.setAdapter(customAdapter);
} else if (id == R.id.completed) {
display = "completed";
lv.setAdapter(customAdapterCompleted);
} else if (id == R.id.pending) {
display = "pending";
lv.setAdapter(customAdapterPending);
}
return super.onOptionsItemSelected(item);
}
//XML file for menu (a folder unside res)
<?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">
<item
android:id="@+id/all"
android:orderInCategory="100"
android:title="Show All"
app:showAsAction="never" />
<item
android:id="@+id/completed"
android:orderInCategory="200"
android:title="Show Completed"
app:showAsAction="never" />
<item
android:id="@+id/pending"
android:orderInCategory="200"
android:title="Show Pending"
app:showAsAction="never" />
</menu>
以上是关于text 活动的3点菜单的主要内容,如果未能解决你的问题,请参考以下文章
点菜系列总结
点菜单项在面板中打开并判断是否打开
关于正餐智能POS6.0.1.1改版后,点击反结账进入点菜界面后无法进行加菜的FAQ
P1164 小A点菜
luogu1164小A点菜
快速上手《VueJs+elementUI开发点菜应用》