Android ソフト キーボードが、他のテキスト ボックスに移動しているときに、数字モードからアルファベット モードに自動的に切り替わらないのはなぜですか?
user1396008
質問する
137 次
2 に答える
0
android:inputType="select ur appropriate mode"
あなたの特定のテキストボックス
例を以下に示します
<EditText
android:id="@+id/editText1"
android:inputType="text"=========returns text keyboard
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<EditText
android:id="@+id/editText1"
android:inputType="number"=======returns numeric keyboard
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
于 2012-11-07T10:14:21.593 に答える
0
プロパティを使用して、inputType
必要なキーボードの種類を示す必要があります。
たとえば、2 つの編集ボックスがあるとします。
//alphabet keyboard is shown when user focus is on this box
<EditText
android:id="@+id/editText1"
android:inputType="text"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
//numeric keyboard is shown when user focus is on this box
<EditText
android:id="@+id/editText2"
android:inputType="number"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
于 2012-11-07T10:33:11.657 に答える