这是我的应用程序在RecyclerView中显示项目的方式。
我可以进行哪些更改以实现相同的目的?
<LinearLayout android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_alignParentBottom="true"
android:layout_below="@+id/ln1"
android:layout_toRightOf="@+id/setimage">
<android.support.v7.widget.RecyclerView
android:id="@+id/horizontal_recycler_view"
android:layout_width="wrap_content"
android:layout_height="50dp" />
</LinearLayout>
答案 0 :(得分:0)
由于RecyclerView是水平方向的,因此需要将线性布局的layout_width
设置为固定值(或wrap_content
)以删除图像中显示的多余空间。