我遇到了麻烦。我正在使用Google Maps Api v2,我在Google Maps App中创建了一个基本工具栏。在那里我有一个AutoCompleteTextBox。
问题是当我按'完成'按钮时(当屏幕处于纵向模式时), actionId == 0 和 KeyEvent = = 0 ,但是当我按下标记的操作按钮时(当屏幕处于横向模式时)它可以工作,但是 DONE 按钮不起作用。
在java代码实现中我写道:
autoCompleteTextView.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
boolean handled = false;
if (actionId == EditorInfo.IME_ACTION_DONE) {
//Log.i("AutoCompleteTextView", "Evento onEditorAction ... ");
search();
handled = true;
}
Log.i("AutoCompleteTextView", "Evento onEditorAction ... " + actionId);
return handled;
}
});
在我使用的XML布局中:
<AutoCompleteTextView
android:id="@+id/autoText"
android:layout_width="match_parent"
android:layout_height="48dp"
android:layout_marginLeft="48dp"
android:layout_marginBottom="6dp"
android:layout_marginRight="6dp"
android:gravity="bottom"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="@color/fontColorMenu"
style="@style/AutoCompleteTextViewAppTheme"
android:imeActionLabel="Buscar"
android:imeOptions="actionDone"
android:hint="Ingrese ciudad"
android:inputType="text"/>
所以我不知道出了什么问题,我正在使用 targetSdkVersion 22 ,使用 Moto G on Android Lollipop 并使用 Android Studio 1.1。 0
答案 0 :(得分:2)
是的,你是对的。因为你正在使用自己的文字&#34; Buscar&#34;而不是默认&#34;完成&#34;。要克服您的问题,请更改EditorAction方法代码。
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
boolean handled = false;
if (actionId == event.ACTION_DOWN) {
search();
handled = true;
}
return handled;
}