我有 3 个布局:
片段标签.xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
</LinearLayout>
片段_stunde.xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/linearLayout">
</LinearLayout>
片段_fach.xml:
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textView_raum"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textView_fach"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textView_lehrer"/>
</RelativeLayout>
我想要的是所有的内容都在 IDE 中作为预览fragment_fach.xml
显示。fragment_stunde.xml
(fragment_stunde.xml 应该显示在fragment_tag.xml
) 我将在我的代码中的某个地方进行膨胀fragment_fach.xml
,我希望我看到它在我能够改进设计的其他片段中的外观。
我试图添加tools:listitem="@layout/fragment_fach"
,fragment_stunde.xml
但这不起作用。
这可能吗?