<AutoCompleteTextView
android:id="@+id/product"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="product"
android:singleLine="true"
android:textColor="@color/white"
android:textSize="15dp" />
これは AutoCompleteTextView の私のコードです。
Next
問題は、テキストを入力してからソフトキーボードをクリックしたいということです。Next
ソフトキーボードには表示されませんが、カーソルが次の場所に移動しませんEditText
。同じスクリーンレストでは、すべての EditText に同じコードがあり、正常に動作します。そのような場合、AutoCompleteTextView は通常とは異なりますEditText
か??