Android XML预览不显示不同的内容

时间:2016-11-10 17:49:18

标签: java android xml layout


我有2个framelayout,它们是片段容器 问题是XML预览器没有显示任何内容。
该应用程序工作,没有错误消息。
我尝试在不同的framelayouts中添加工具:showIn =“@ layout / ...”但它没用。

<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.sarahpoehler.testapp.MainActivity">

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <FrameLayout
            android:id="@+id/container_fragment_one"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>

        <FrameLayout
            android:id="@+id/container_fragment_two
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>
    </LinearLayout>
</ScrollView>

Here the XML preview

0 个答案:

没有答案