Câu trả lời:
Bạn có thể đặt giá trị này trong tệp xml bố cục bằng cách sử dụng android:divider="#FF0000"
. Nếu bạn đang thay đổi màu sắc / drawable, bạn cũng phải đặt / đặt lại chiều cao của dải phân cách.
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ListView
android:id="@+id/android:list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:divider="#FFCC00"
android:dividerHeight="4px"/>
</LinearLayout>
px
đơn vị để xác định kích thước trong Android, dp
thay vào đó hãy sử dụng
Hoặc bạn có thể mã nó:
int[] colors = {0, 0xFFFF0000, 0}; // red for the example
myList.setDivider(new GradientDrawable(Orientation.RIGHT_LEFT, colors));
myList.setDividerHeight(1);
Hy vọng nó giúp
Đối với một dòng màu sử dụng:
list.setDivider(new ColorDrawable(0x99F10529)); //0xAARRGGBB
list.setDividerHeight(1);
Điều quan trọng là DividerHeight được đặt sau dải phân cách , nếu không bạn sẽ không nhận được gì.
Phiên bản XML cho hiệu ứng tuyệt vời @Asher Aslan.
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<gradient
android:angle="180"
android:startColor="#00000000"
android:centerColor="#FFFF0000"
android:endColor="#00000000"/>
</shape>
Đặt tên cho hình dạng đó là: list_do.xml trong thư mục drawable
<ListView
android:id="@+id/category_list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:divider="@drawable/list_driver"
android:dividerHeight="5sp" />
Có hai cách để làm như vậy:
Bạn có thể đặt giá trị của android: spliter = "# FFCCFF" trong tệp xml bố cục. Với điều này, bạn cũng phải xác định chiều cao của dải phân cách như android này : spliterHeight = "5px ".
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@+id/lvMyList"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:divider="#FFCCFF"
android:dividerHeight="5px"/>
</LinearLayout>
Bạn cũng có thể làm điều này bằng cách lập trình ...
ListView listView = getListView();
ColorDrawable myColor = new ColorDrawable(
this.getResources().getColor(R.color.myColor)
);
listView.setDivider(myColor);
listView.setDividerHeight();
Sử dụng mã dưới đây trong tệp xml của bạn
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:divider="#000000"
android:dividerHeight="1dp">
</ListView>
sử dụng có lập trình
// Set ListView divider color
lv.setDivider(new ColorDrawable(Color.parseColor("#FF4A4D93")));
// set ListView divider height
lv.setDividerHeight(2);
sử dụng xml
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ListView
android:id="@+id/android:list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:divider="#44CC00"
android:dividerHeight="4px"/>
</LinearLayout>
Sử dụng android:divider="#FF0000"
và android:dividerHeight="2px"
cho ListView.
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:divider="#0099FF"
android:dividerHeight="2px"/>
Drawable
tài nguyênandroid:divider
là tốt. Dải phân cách hiện tại là một gradient.