我想在选项菜单中添加一个 ListView,以便单击它时会弹出并允许用户滚动浏览它并进行交互,而无需与任何其他列表视图相同。
对 XML 使用这个:
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<ListView android:id="@+id/menuGroupsList" android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
</menu>
这是代码:
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.layout.menu, menu);
ListView list = (ListView)findViewById(R.id.menuGroupsList);
}
从 findViewById 返回 null。
这是可能吗?
谢谢