我想保留这些方法:
setListShown(true);
setListShownNoAnimation(true);
但如果我使用
onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
要使用自定义样式的布局来膨胀Fragment
,以前的方法不能使用,并显示此异常:
07-30 20:17:46.937: E/AndroidRuntime(1374): Caused by: java.lang.IllegalStateException: Can't be used with a custom content view
07-30 20:17:46.937: E/AndroidRuntime(1374): at android.support.v4.app.ListFragment.setListShown(ListFragment.java:282)
07-30 20:17:46.937: E/AndroidRuntime(1374): at android.support.v4.app.ListFragment.setListShown(ListFragment.java:258)
那么,可能的解决方案是什么?
编辑:
使用Fragment
加载器ListView
从数据库中填充它。所以这就是我想保留这些方法的原因,这里需要它们:
public void onLoadFinished(Loader<Cursor> loader, Cursor data) {
mAdapter.swapCursor(data);
if (isResumed()) {
setListShown(true);
} else {
setListShownNoAnimation(true);
}
}
最简单的解决方案是根据ListFragment
源代码制作我自己的代码,并将进度小部件添加到布局中以显示相同的效果。到现在为止,我将按照我被告知的那样删除这些行。如果我进行修改,我会将其粘贴到此处。