问问题
730 次
1 回答
0
创建一个线性布局的 xml 文件,并将线性布局的方向属性设置为水平。例如,
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightsum="3">
<ImageView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<ImageView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<ImageView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
</LinearLayout>
并在 recyclerView 适配器类中调用此布局。
于 2016-08-06T09:48:39.190 回答