私はAsyncTasksからFragementsにアプリケーションを移植しています。ListFragmentどのようにlistViewを取得するには?
しかし、私のフラグメント内のlistView(id:list)要素にアクセスするにはどうすればよいですか?
class MyFragment extends ListFragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.list_fragment, container, false);
ListView listView = getListView(); //EX:
listView.setTextFilterEnabled(true);
registerForContextMenu(listView);
return v;
}
}
のxml:
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</ListView>
例:onCreateView
ドキュメントとして
Caused by: java.lang.IllegalStateException: Content view not yet created
http://stackoverflow.com/questions/9286391/android-why-is-this-telling-me-content-view-not-yet-created –