我打电话给getListView()
我OnActivityCreated()
的ListFragment
. 它工作正常,但如果我旋转设备屏幕并再次调用 getListView() 它返回 null。
这是 ListFragment代码:
public class MyListFragment extends ListFragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.my_list_fragment, container, false);
}
@Override
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
ListView list = getListView();
if (list != null) {
//List is not null!
}
else {
//List is null, there is an error.
}
}
}
这是布局 xml ( my_list_fragment.xml ):
<ListView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent" />