如何在android中列出可选择的整行视图?

时间:2011-06-03 23:39:49

标签: android android-layout android-listview

我从Android示例教程中创建了一个示例应用程序,并完成了记事本的所有3个练习。我可以添加和编辑创建的注释。但是,当我尝试编辑笔记时,我强制选择要编辑的文本标题。如果我单击文本右侧,基本上任何其他位置在同一行中我无法编辑它。

我想让整行可选择/可编辑。请让我知道如何做到这一点。我试图更改notes_row.xml width =“fill_parent”。但这没有成功。这个你能帮我吗。谢谢。

1 个答案:

答案 0 :(得分:4)

更改notes_row.xml文件

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content" android:layout_height="wrap_content">


        <TextView android:id="@+id/text1" 
                  android:layout_width="match_parent"
                  android:layout_height="wrap_content"
                  android:text="TextView">
        </TextView>

</RelativeLayout>