คำถามติดแท็ก divider

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"/> ในกรณีนี้การกำหนดระยะขอบและ / หรือเพิ่มมุมมองตัวแบ่งที่กำหนดเองลงในเลย์เอาต์ของรายการหรือไม่ก็เป็นวิธีที่ดีกว่าเพื่อให้บรรลุเป้าหมายของฉันหรือไม่

12
Android ListView Divider
ฉันมีรหัสนี้: <ListView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/cashItemsList" android:cacheColorHint="#00000000" android:divider="@drawable/list_divider"></ListView> อยู่ที่ไหน@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> but I can't see any divider.

5
ลบตัวแบ่งด้านล่างของ Android ListView
ListViewฉันมีความสูงคงที่ มีตัวแบ่งระหว่างรายการ แต่ยังแสดงเส้นแบ่งหลังจากรายการสุดท้าย มีวิธีที่จะไม่แสดงตัวแบ่งหลังจากรายการสุดท้ายในListViewหรือไม่?

11
จะเพิ่มตัวแบ่ง (แนวตั้ง) ให้กับ LinearLayout แนวนอนได้อย่างไร?
ฉันกำลังพยายามเพิ่มตัวแบ่งให้กับเลย์เอาต์เชิงเส้นแนวนอน แต่ฉันไปไหนไม่ได้เลย ตัวแบ่งไม่แสดง ฉันเป็นมือใหม่กับ Android นี่คือ XML เค้าโครงของฉัน: <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" > <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/llTopBar" android:orientation="horizontal" android:divider="#00ff00" android:dividerPadding="22dip" android:showDividers="middle" > <Button android:layout_width="wrap_content" android:layout_height="match_parent" android:text="asdf" /> <Button android:layout_width="wrap_content" android:layout_height="match_parent" android:text="asdf" /> </LinearLayout> </RelativeLayout>
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.