6

我已在AndroidManifest.xmlandroid:windowSoftInputMode="stateAlwaysVisible"中添加到我的 Activity 中,这是我的布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <EditText android:id="@+id/EditText01" android:layout_width="wrap_content"
        android:layout_height="wrap_content"></EditText>
    <EditText android:id="@+id/EditText02" android:layout_width="wrap_content"
        android:layout_height="wrap_content"></EditText>
    <Button android:id="@+id/Button01" android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:text="Send"></Button>
</LinearLayout>

替代文字 http://img227.imageshack.us/img227/2006/18021414.png

Activity 启动时,EditText 获得焦点,但不显示软键盘。如果我单击 EditText,那么我会看到软键盘。我是否需要设置其他参数以在我的 Activity 启动时显示软键盘?

谢谢

4

2 回答 2

15

解决方案1:

在活动的 onCreate() 方法中编写以下代码

InputMethodManager imm = (InputMethodManager)
    SearchActivity.this.getSystemService(Context.INPUT_METHOD_SERVICE);

if (imm != null){
    imm.toggleSoftInput(InputMethodManager.SHOW_FORCED,0);
}

解决方案 2:

创建以下方法并从 onCreate() 调用

private void showVirturalKeyboard(){
    Timer timer = new Timer();
    timer.schedule(new TimerTask() {
         @Override
         public void run() {
              InputMethodManager m = (InputMethodManager) SearchActivity.this.getSystemService(Context.INPUT_METHOD_SERVICE);

              if(m != null){
                // m.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);
                m.toggleSoftInput(0, InputMethodManager.SHOW_IMPLICIT);
              } 
         }

    }, 100);         
}
于 2010-04-27T07:26:45.160 回答
7

尝试将此添加到活动 onCreate() 方法

this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE); 
于 2010-04-26T11:12:20.920 回答