Android Studio - 如何为布局添加预览我会在代码中的某处膨胀?

时间:2013-07-21 19:11:51

标签: android android-studio

我有3个布局:

fragment_tag.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>

fragment_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>

fragment_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>

我想要的是fragment_fach.xml的所有内容都在fragment_stunde.xml中显示为IDE中的预览。 (fragment_stunde.xml应该显示在fragment_tag.xml中)我会在我的代码中的某处膨胀fragment_fach.xml我希望我看到它在另一个片段中的外观,我能够改进设计。< / p>

我尝试将tools:listitem="@layout/fragment_fach"添加到fragment_stunde.xml,但这不起作用。

无论如何这可能吗?

2 个答案:

答案 0 :(得分:0)

确保将其添加到根元素:

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

干杯

答案 1 :(得分:0)

tools:layout="@layout/yourfragment"