我有一个TableLayout
,其中两个TextView
元素代表一个表的标题,在TableLayout
下面我有ListView
每个ListView
项目有一个复选框后跟两个TextView
元素,表示该列的值。像这样的东西
问题是右侧列未与TableRow
第二个单元格对齐。相反,它出现在第一个ListView
项文本元素末尾的右侧。我怎么能实现这个目标呢?
这就是我所拥有的
main_activity.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/parentPanel"
tools:context=".MainActivity">
<TableLayout
android:id="@+id/surveys_table"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin">
<TableRow android:layout_height="wrap_content">
<TextView
android:id="@+id/survey_name_header"
android:layout_weight="1"
android:background="@drawable/header_cell_shape"
android:text="@string/survey_name"
android:textColor="@color/white" />
<TextView
android:id="@+id/survey_class_header"
android:layout_weight="1"
android:background="@drawable/header_cell_shape"
android:text="@string/survey_class"
android:textColor="@color/white" />
</TableRow>
</TableLayout>
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/surveys_table" />
</RelativeLayout>
survey_list_item.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<CheckBox
android:id="@+id/checkBox1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="33dp"
android:layout_marginTop="7dp" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="40dp"
android:layout_marginTop="7dp"
android:layout_toRightOf="@+id/textView1" />
</RelativeLayout>
我认为我需要修改addView()
的{{1}}方法中的布局参数,但我不确定如何?
ListAdapter