有Android输入显示号码与QWERTY

时间:2013-01-22 21:26:52

标签: android

在Android中,如何为用户输入显示键盘,显示数字键盘“123456789。+ - ”,而不是默认的QWERTY键盘?我需要它来显示这个以便于数据输入。


          <EditText
                    android:id="@+id/etCYLl"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginRight="5dp"
                    android:layout_weight="1"
                    android:background="@drawable/myedittext"

                    android:ems="10"
                    android:inputType="numberDecimal|numberSigned"
                    android:digits="0123456789.+-"
                    android:nextFocusForward="@+id/etAXEl"
                    android:paddingLeft="5dp"
                    android:paddingRight="5dp"
                    android:singleLine="true" />

1 个答案:

答案 0 :(得分:2)

您需要编写一个键盘才能用于该应用。您可以更改键盘中使用的自定义键,请在此处查看:http://www.droid-life.com/2010/04/22/create-your-own-custom-htc_ime-keyboard/