Android Studio预览片段

时间:2013-10-25 09:58:37

标签: android android-studio

我有以下布局文件:

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:orientation="vertical"
    android:layout_height="match_parent">

    <TextView
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:text="@string/what_did_you_eat"/>

    <FrameLayout
        android:id="@+id/container"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        tools:context=".AddFoodActivity"
        tools:ignore="MergeRootFrame"
        />

</LinearLayout>

FrameLayout将包含动态添加的fragment,有没有办法在编辑器中预览fragment? 就像我们使用&lt; {1}} 属性的&lt; fragment&gt; 标记时可以做的那样?

1 个答案:

答案 0 :(得分:2)

尽管它很有用,the current tools docs中没有任何内容表明这是可能的。