回收站视图之间的距离

时间:2018-06-19 15:58:48

标签: android android-layout android-recyclerview recyclerview-layout

这是我的应用程序在RecyclerView中显示项目的方式。 enter image description here

这就是它的外观。 enter image description here

我可以进行哪些更改以实现相同的目的?

<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>

1 个答案:

答案 0 :(得分:0)

由于RecyclerView是水平方向的,因此需要将线性布局的layout_width设置为固定值(或wrap_content)以删除图像中显示的多余空间。