2013-02-03 84 views
1

可能重複:
Android: show soft keyboard automatically when focus is on an EditText如何強制安卓鍵盤彈出?

我正在寫一個應用程序,我需要的主要事情之一是爲鍵盤打開並能在文本字段中鍵入這就是焦點。

我已經試過:

((InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE)).toggleSoftInput(InputMethodManager.SHOW_FORCED, InputMethodManager.HIDE_IMPLICIT_ONLY); 

這是不行的,任何人都可以給我一個提示?

+1

您是否嘗試過這個解決方案? http://stackoverflow.com/a/2418314/1489493 – Hartok

回答

1

嘗試添加如下您的活動AndroidMainifest.xml:

android:windowSoftInputMode="stateAlwaysVisible" 

,然後可能看起來像

<activity 
    android:name=".MainActivity" 
    android:windowSoftInputMode="stateAlwaysVisible"> 
</activity>