我的 Android 项目中有一个可用的可扩展列表视图,其中每个子视图包含一个 ImageView、一个 TextView、一个 EditText 和一个复选框:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:background="#CCCCCC"
android:orientation="horizontal" >
<ImageView
android:id="@+id/imgname"
android:layout_width="50dp"
android:layout_height="wrap_content"
android:layout_alignParentTop="True"
android:contentDescription="@+id/imgdesc"
android:paddingLeft="1dp"
android:scaleType="fitCenter"
android:src="@drawable/logo_grey" />
<TableLayout
android:id="@+id/container"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_toLeftOf="@+id/check1"
android:layout_toRightOf="@+id/imgname"
android:stretchColumns="0" >
<TableRow
android:id="@+id/tableRow1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/desc"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:focusable="false"
android:textSize="13dp"
android:background="#CCCCCC"
android:textColor="#777777"
android:textStyle="bold" />
</TableRow>
<TableRow
android:id="@+id/tableRow2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="fill_horizontal" >
<EditText
android:id="@+id/content"
style="textViewStyle"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fadingEdge="none"
android:focusable="true"
android:hint="@+id/contenthint"
android:isScrollContainer="true"
android:minWidth="150dp"
android:singleLine="false"
android:textSize="10dp"
android:textStyle="italic" >
</EditText>
</TableRow>
</TableLayout>
<CheckBox
android:id="@+id/check1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:focusable="false"
android:gravity="right" />
</RelativeLayout>
为了写入我的 SQLite 数据库,我想创建一个列表,对于复选框值为 true 的每个子项,该列表包含来自 TextView desc 的文本和来自 EditText 内容的文本,可能作为值对数组. 该操作将由用户通过 ExpandableListActivity 上的按钮触发。但我不确定如何在放大视图后识别小部件的值。我会很感激一点点,我一直无法在网上找到一个好的答案!