30
Làm cách nào để thêm dải phân cách và khoảng trắng giữa các mục trong RecyclerView?
Đây là một ví dụ về cách nó có thể đã được thực hiện trước đó trong ListViewlớp, sử dụng chia và dividerHeight thông số: <ListView android:id="@+id/activity_home_list_view" android:layout_width="match_parent" android:layout_height="match_parent" android:divider="@android:color/transparent" android:dividerHeight="8dp"/> Tuy nhiên, tôi không thấy khả năng như vậy trong RecyclerViewlớp. <android.support.v7.widget.RecyclerView android:id="@+id/activity_home_recycler_view" android:layout_width="match_parent" android:layout_height="match_parent" android:scrollbars="vertical"/> Trong trường hợp …