在我的应用程序中,我在可扩展列表视图中使用编辑文本视图。当我尝试在编辑文本中添加文本时,editext 的焦点会自动更改。我无法正确地将文本放入编辑文本中。我应该怎么办?
编辑文本 xml-
<EditText
android:id="@+id/editDetails"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:singleLine="false"
android:lines="3"
android:focusable="true"
android:focusableInTouchMode="true" />