30
RecyclerViewのアイテム間に仕切りとスペースを追加する方法は?
これは、以前に行われている可能性がどのようにの一例でListView使用して、クラス分圧器とdividerHeightパラメータを: <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"/> しかし、私はそのような可能性をRecyclerViewクラスで見ていません。 <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"/> その場合、余白を定義したり、カスタムの分割ビューをリストアイテムのレイアウトに直接追加したりしても問題ありませんか、それとも私の目標を達成するためのより良い方法はありますか?