作为一名新的Android程序员,我有我必须运行的todo应用程序。圣诞节购物是可以接受的,但我真的想让整个列表项行可点击。现在我必须点击文字。项目越短越难打。
我的主要活动扩展了ListActivity。我使用ResourceCursorAdapter的子类作为列表本身。我的布局看起来像这样(谢谢!):
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/todo_row"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<CheckBox android:text=""
android:id="@+id/todo_checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:focusable="false"
android:checked="false"
></CheckBox>
<TextView android:text=""
android:id="@+id/todo_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
></TextView>
</LinearLayout>