这里有一个问题:ListFragment as DialogFragment
但我需要知道的是如何在DialogFragment 中调用ListFragment时,如果它不是DialogFragment中的唯一内容。由于我的声誉点,我无法发布图片所以这里是我希望我的片段具有的xml布局(例如,list只是我片段的一部分,有一个edittext和按钮):
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="1">
<EditText
android:id="@+id/person"
android:inputType="numberDecimal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:layout_marginBottom="4dp"
android:hint="Name of First Person"
android:layout_gravity="right" />
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:orientation="horizontal"
android:weightSum="1">
<ListView
android:id="@+id/ScrubList"
android:layout_width="wrap_content"
android:layout_height="201dp"
android:padding = "10dp"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"></ListView>
</LinearLayout>
<Button
android:id="@+id/btnDone"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Add to Group"
android:layout_margin="10dp"
android:background="@drawable/btn_green"
style="@style/ButtonText"
/>
</LinearLayout>
在发布之前,我试图很好地研究这个主题。