2012-08-30 39 views
6

我搜索了很長時間纔得到答案,現在是時候問我的問題ons stackoverflow。在數字或符號模式下打開或啓動軟鍵盤

我無法想象Android操作系統沒有可能讓軟鍵盤在數字/符號代碼中開始並賦予用戶切換回字母的能力?

我已經嘗試過這一點,但沒有成功:

在代碼

editTextHouseNumber.setRawInputType(InputType.TYPE_CLASS_NUMBER); 
editTextHouseNumber.setInputType(InputType.TYPE_CLASS_NUMBER); 

xmlLayoutFile:

android:inputType="textPostalAddress" 
android:inputType="number|textCapCharacters" 
android:inputType="number" 

請幫助

+0

本JIJ DIT外翻? ;) – Entreco

回答

0

據我明白你的問題是隻要屏幕啓動,你想用鍵盤打開鍵盤。 試試這個,不管這是你想要的。

<EditText 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:inputType="number"> 
    <requestFocus/> 
    </EditText> 
+0

這樣,你不能回到字符類型(至少在連接設備上)。我想輸入符號和字符 – Entreco

相關問題