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を返します。
これは可能ですか?
ありがとう