Câu hỏi được gắn thẻ «divider»

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 …

12
Bộ phân chia danh sách Android
Tôi có mã này: <ListView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/cashItemsList" android:cacheColorHint="#00000000" android:divider="@drawable/list_divider"></ListView> ở đâu @drawable/list_divider: <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="line"> <stroke android:width="1dp" android:color="#8F8F8F" android:dashWidth="1dp" android:dashGap="1dp" /> </shape> nhưng tôi không thể nhìn thấy bất kỳ dải phân cách nào.


11
Làm cách nào để thêm dải phân cách (dọc) vào LinearLayout ngang?
Tôi đang cố gắng thêm một dải phân cách vào một bố cục tuyến tính ngang nhưng chẳng đi đến đâu. Dải phân cách không hiển thị. Tôi là một người mới hoàn toàn với Android. Đây là XML bố cục của tôi: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" > …
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.