У меня есть собственный макет списка.Содержание списка должно быть,
+--------------+-------------+------------+
|an image icon | text label |a checkbox |
+--------------+-------------+------------+
- изображение всегда должно быть выровнено по левому краю
- флажок всегда должен быть выровнен по правому краю
- Текстовая метка должна занимать оставшееся пространство.
Моя проблема в том, что флажки не выровнены по правому краю экрана.Он занимает место в зависимости от размера текстовой метки.Если метка слишком большая, флажок никогда не отображается / отображается наполовину.
Пример файла макета следующим образом
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TableLayout android:id="@+id/tableLayout1"
android:layout_width="match_parent" android:layout_height="wrap_content">
<TableRow android:id="@+id/tableRow1" android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView android:id="@+id/imageView1" android:src="@drawable/icon"
android:layout_width="wrap_content" android:layout_height="wrap_content"></ImageView>
<TableLayout android:id="@+id/tableLayout2"
android:layout_width="match_parent" android:layout_height="wrap_content">
<TableRow android:id="@+id/tableRow5" android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView android:layout_width="wrap_content"
android:text="TextView" android:id="@+id/textView1"
android:layout_height="wrap_content"></TextView>
</TableRow>
<TableRow android:id="@+id/tableRow6" android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView android:text="TextView" android:id="@+id/textView2"
android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
</TableRow>
<TableRow android:id="@+id/tableRow7" android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView android:text="TextView" android:id="@+id/textView3"
android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
</TableRow>
<TableRow android:id="@+id/tableRow8" android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:text="x"
android:id="@+id/textView4" android:layout_width="wrap_content"
android:layout_height="wrap_content"></TextView>
</TableRow>
</TableLayout>
<CheckBox android:text="" android:id="@+id/checkBox1"
android:layout_width="wrap_content" android:layout_height="wrap_content"></CheckBox>
</TableRow>
</TableLayout>
</LinearLayout>