У меня есть простая реализация ListActivity, которая имеет следующий дизайн
+------+------------------------------------+
| Z1 | Z2 |
| | |
+------+------------------------------------+
, где Z1 является элементом ImageView, а Z2 - элементом TextView.Это моя разметка
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView android:id="@+id/icon" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:src="@drawable/icon" />
<TextView android:id="@+id/sectionTitle" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:textStyle="bold" />
</LinearLayout>
Как изменить мою разметку, чтобы получить дизайн, который добавляет еще один элемент, как в следующем примере?
+------+------------------------------------+
| Z1 | Z2 |
+ +------------------------------------+
| | Z3 (New TextView) |
| | |
+------+------------------------------------+