Odpowiedzi:
Możesz ustawić tę wartość w pliku XML układu za pomocą android:divider="#FF0000"
. W przypadku zmiany koloru / wysuwu należy również ustawić / zresetować wysokość dzielnika.
<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
jednostki do definiowania rozmiarów w Androidzie, dp
zamiast tego używaj
Lub możesz to zakodować:
int[] colors = {0, 0xFFFF0000, 0}; // red for the example
myList.setDivider(new GradientDrawable(Orientation.RIGHT_LEFT, colors));
myList.setDividerHeight(1);
Mam nadzieję, że to pomoże
W przypadku użycia jednej linii kolorów:
list.setDivider(new ColorDrawable(0x99F10529)); //0xAARRGGBB
list.setDividerHeight(1);
Ważne jest, aby DividerHeight był ustawiony za dzielnikiem , w przeciwnym razie nic nie dostaniesz.
Wersja XML dla fajnego efektu @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>
Nazwij ten kształt jako: list_driver.xml w folderze wysuwnym
<ListView
android:id="@+id/category_list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:divider="@drawable/list_driver"
android:dividerHeight="5sp" />
Istnieją dwa sposoby na zrobienie tego samego:
Możesz ustawić wartość Androida: divider = "# FFCCFF" w pliku xml układu. Dzięki temu musisz również określić wysokość dzielnika, takiego jak ten android: dividerHeight = "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>
Możesz to również zrobić programowo ...
ListView listView = getListView();
ColorDrawable myColor = new ColorDrawable(
this.getResources().getColor(R.color.myColor)
);
listView.setDivider(myColor);
listView.setDividerHeight();
Użyj poniższego kodu w swoim pliku xml
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:divider="#000000"
android:dividerHeight="1dp">
</ListView>
używając programowo
// Set ListView divider color
lv.setDivider(new ColorDrawable(Color.parseColor("#FF4A4D93")));
// set ListView divider height
lv.setDividerHeight(2);
za pomocą 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>
Użyj android:divider="#FF0000"
i android:dividerHeight="2px"
dla ListView.
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:divider="#0099FF"
android:dividerHeight="2px"/>
Drawable
zasobuandroid:divider
. Istniejący dzielnik jest gradientem.