Yanıtlar:
Bu değeri kullanarak bir düzen xml dosyasında ayarlayabilirsiniz android:divider="#FF0000"
. Rengi / çekilebilir rengi değiştiriyorsanız, bölücünün yüksekliğini de ayarlamanız / sıfırlamanız gerekir.
<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
Android'de boyutları tanımlamak için birimi kullanmanızı önermiyorum , dp
bunun yerine kullanın
Veya kodlayabilirsiniz:
int[] colors = {0, 0xFFFF0000, 0}; // red for the example
myList.setDivider(new GradientDrawable(Orientation.RIGHT_LEFT, colors));
myList.setDividerHeight(1);
Umarım yardımcı olur
Tek bir renk çizgisi kullanımı için:
list.setDivider(new ColorDrawable(0x99F10529)); //0xAARRGGBB
list.setDividerHeight(1);
DividerHeight'ın ayırıcıdan sonra ayarlanması önemlidir , aksi takdirde hiçbir şey alamazsınız.
Asher Aslan serin etkisi için XML sürümü.
<?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>
Bu şeklin adını çizilebilir klasörün altında list_driver.xml
<ListView
android:id="@+id/category_list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:divider="@drawable/list_driver"
android:dividerHeight="5sp" />
Aynı şeyi yapmanın iki yolu vardır:
Düzen: xml dosyasında android: divider = "# FFCCFF" değerini ayarlayabilirsiniz . Bununla birlikte bu android gibi bölücü yüksekliğini belirtmeniz gerekir : 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>
Bunu programlı olarak da yapabilirsiniz ...
ListView listView = getListView();
ColorDrawable myColor = new ColorDrawable(
this.getResources().getColor(R.color.myColor)
);
listView.setDivider(myColor);
listView.setDividerHeight();
Xml dosyanızda aşağıdaki kodu kullanın
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:divider="#000000"
android:dividerHeight="1dp">
</ListView>
programlı kullanmak
// Set ListView divider color
lv.setDivider(new ColorDrawable(Color.parseColor("#FF4A4D93")));
// set ListView divider height
lv.setDividerHeight(2);
xml kullanma
<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>
ListView için android:divider="#FF0000"
ve kullanın android:dividerHeight="2px"
.
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:divider="#0099FF"
android:dividerHeight="2px"/>
Drawable
kaynak da belirtebilirsinizandroid:divider
. Varolan bölücü bir eğimdir.