2

我有 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但这不起作用。

这可能吗?

4

2 回答 2

0

确保将其添加到您的根元素:

xmlns:tools="http://schemas.android.com/tools"

干杯

于 2013-07-23T16:09:31.613 回答
0
tools:layout="@layout/yourfragment"
于 2013-08-26T07:34:28.093 回答