我正在尝试实现一个在单击时不会移动到下一个编辑文本的按钮。所以这是我的代码:
<EditText
android:id="@+id/address_edittext"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:hint="@string/address_textview_hint"
android:imeActionLabel="@string/search_button"
android:imeOptions="actionNone"
android:inputType="textCapWords"
android:singleLine="true" />
当我单击此按钮时,某些操作由代码完成,但错误地跳转到其他编辑文本。
我怎么能解决这个问题?