0

Android ソフト キーボードが、他のテキスト ボックスに移動しているときに、数字モードからアルファベット モードに自動的に切り替わらないのはなぜですか?

4

2 に答える 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 に答える