我有以下问题:

我有一个存在的ListFragment,但是我想将其显示为一个对话框。

我的第一种方法是创建一个DialogFragment,在其中必须包含ListFragment,但是目前看来不可能将 fragment 放入 fragment 中。

由于大量使用了DialogFragment方法,因此也无法扩展ListFragment而不是ListFragment

是否有捷径可寻?

最佳答案

对我有用的是
1)您的DialogFragment的xml布局中的称为 DialogFragmentwWithListFragment 指定ListFragment类
例如。 dialog_fragment_with_list_fragment.xml :

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <fragment
             android:id="@+id/flContent"
             android:layout_width="match_parent"
             android:layout_height="match_parent"
             android:padding = "10dp"
             class="com.xxx.yyy.DialogFragmentwWithListFragment " />
</LinearLayout>

2)中的 DialogFragmentwWithListFragment 扩展 dialog_fragment_with_list_fragment.xml
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    return inflater.inflate(R.layout.dialog_fragment_with_list_fragment, null);
}

3)作为常规DialogFragment调用 DialogFragmentwWithListFragment :
 DialogFragmentwWithListFragment dialogFragment = DialogFragmentwWithListFragment  .newInstance();
 dialogFragment.setRetainInstance(true);
 dialogFragment.show(getFragmentManager(), "tag");

希望能帮助到你。

关于android - 如何在DialogFragment中显示现有的ListFragment,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11342032/

10-12 00:33