Impostare un divider in una ListView in Android
Piccolo tips per Android: come impostare un divider in una ListView?
In sostanza un divider tra un elemento e un altro della ListView.
A prescindere da come venga riempita ovviamente.
Per fare questo possiamo usare l'attributo android:divider.
Ecco un esempio:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusable="true"
android:focusableInTouchMode="true"
android:orientation="vertical">
<EditText
android:id="@+id/txt_search"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/cerca"
android:maxLines="1" />
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:divider="@color/red_300"
android:dividerHeight="1dip" />
</LinearLayout>
Abbiamo impostato anche l'altezza e il colore.
Quest'ultimo è impostato nel res/values/colors.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="red_500"> #f44336</color>
<color name="red_300">#e57373</color>
</resources>
Enjoy!
java android divider listview
Commentami!