4

私は次のレイアウトファイルを持っています:

<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ますか? 属性で<fragment>タグを使用するときにできることのように ?tools:layout

4

1 に答える 1

3

便利ではありますが、現在のツール ドキュメントには、これが可能であることを示唆するものは何もありません。

于 2013-12-16T23:28:45.117 に答える