У меня есть ListView
:
<ListView
android:id="@+id/my_list"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
Расположение каждой строки элемента представления списка:
<? Xml version = "1.0" encoding = "utf-8"?>
<LinearLayout
xmlns: android = "http://schemas.android.com/apk/res/android"
android: orientation = "horizontal"
android: layout_width = "fill_parent"
android: layout_height = "fill_parent"
>
<ImageView
android: id = "@+id/my_img"
android: layout_width = "wrap_content"
android: layout_height = "wrap_content"
android: layout_gravity = "center_vertical"
/>
<TextView
android: id = "@+id/my_value"
android: layout_width = "wrap_content"
android: layout_height = "wrap_content"
android: textColor = "@drawable/ black" />
</ LinearLayout>
Как вы видите вышекаждая строка списка состоит из ImageView
и TextView
.Теперь я хотел бы иметь переключатель рядом с TextView
, как добавить переключатель в моем случае?