Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/199.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
无法在ListView中编辑Android EditText_Android_Listview_Android Edittext - Fatal编程技术网

无法在ListView中编辑Android EditText

无法在ListView中编辑Android EditText,android,listview,android-edittext,Android,Listview,Android Edittext,我有一个列表视图,每行都有EditText。所以我不能在任何编辑文本中键入任何内容,也不能在点击它们时不聚焦。 Xml来源: <EditText android:id="@+id/textValue" android:layout_width="match_parent" android:layout_height="37dip" android:editable="true" android:focusable="false" android:focusableInTouchMode="

我有一个列表视图,每行都有EditText。所以我不能在任何编辑文本中键入任何内容,也不能在点击它们时不聚焦。 Xml来源:

<EditText
android:id="@+id/textValue"
android:layout_width="match_parent"
android:layout_height="37dip"
android:editable="true"
android:focusable="false"
android:focusableInTouchMode="false"
android:gravity="left|center"
android:inputType="text">
</EditText>


提前感谢。

如果您希望能够专注于编辑文本,请删除将其设置为不可编辑的行:

android:focusable="false"
android:focusableInTouchMode="false"

您使用以下两行使EditText无法聚焦:

android:focusable="false"
android:focusableInTouchMode="false"

只需删除或将该值设置为“true”即可使用它们

使用
表格布局
而不是
列表视图
,因为
编辑文本
列表视图
中存在可聚焦的问题