0
正如標題中所述,如何在活動開始時調用數字小鍵盤?現在我有這個:活動開始時的Android顯示數字小鍵盤
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);
in OnCreate。 但這只是一個普通的全鍵盤字母。
你在xml-layout中試過這個:android:inputType =「number」嗎? –
是的,但它不起作用...注意我沒有編輯文本框等,只是一個線性佈局與列表視圖。但我想要鍵盤出現。 – bernlim
http://stackoverflow.com/questions/1509719/android-how-to-make-the-keypad-always-visible –