18

有没有办法让 Android Studio 的布局预览屏幕用实际运行时布局的占位符视图填充 GridView 或 ListView?

换句话说,我不想看到“项目 1/子项目 1”视图的网格,我希望能够在某处设置 @layout/foo 并让它显示在那里。

4

1 回答 1

55

从图形编辑器:

添加列表项预览

来自 xml:

<GridView
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:numColumns="2"
        tools:listitem="@layout/grid_item"/>

注意:注意这个问题:https ://stackoverflow.com/a/12188118/624706

于 2013-11-08T12:12:15.413 回答