活动开始时软键盘不显示 - 更新?

时间:2011-05-24 23:20:25

标签: android android-layout android-softkeyboard

我想在我的Activity启动时打开键盘。我已经尝试了以下问题的所有方法/答案,没有运气。

我认为问题是当硬件键盘可用时,默认行为是软键盘不显示。这可以被覆盖吗?如果硬件键盘被隐藏会发生什么?

我读过以下问题但没有运气。我遇到的问题最接近的是: Question 2712822

其他包括:
Question 3379403
Question 2479504

main.xml中:

<?xml version="1.0" encoding="utf-8"?>
  <ScrollView android:id="@+id/scrollView1" android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android">
    <LinearLayout android:layout_width="match_parent" android:id="@+id/linearLayout1" android:layout_height="match_parent" android:orientation="vertical">
         <LinearLayout android:layout_height="match_parent" android:id="@+id/linearLayout2" android:layout_gravity="center" android:layout_width="match_parent">
            <TextView android:layout_height="wrap_content" android:text="TextView" android:layout_width="wrap_content" android:id="@+id/textView1"></TextView>
            <EditText android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/testText" android:focusable="true" android:focusableInTouchMode="true" android:hint="Input here"></EditText>
        </LinearLayout>
        <LinearLayout android:layout_height="match_parent" android:id="@+id/linearLayout2" android:layout_gravity="center" android:layout_width="match_parent">
            <TextView android:layout_height="wrap_content" android:text="TextView" android:layout_width="wrap_content" android:id="@+id/textView1"></TextView>
            <EditText android:id="@+id/editText1" android:layout_height="wrap_content" android:layout_width="fill_parent" android:hint="and here"></EditText>
        </LinearLayout>  
    </LinearLayout>
 </ScrollView>

我的主要活动代码如下所示:

package com.example.example3;

import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.view.WindowManager;
import android.view.inputmethod.InputMethodManager;
import android.widget.EditText;

public class example3 extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    EditText edit = (EditText)this.findViewById(R.id.testText);
    edit.requestFocus();

    /*       // Below Doesn't work
    InputMethodManager imm = (InputMethodManager)
    example3.this.getSystemService(Context.INPUT_METHOD_SERVICE);

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

    //Below Doesn't work
   // getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
    */    
    }
}

这是一个失败的原因吗?有人可以在关闭硬件键盘的手机上测试这个并告诉我会发生什么吗?

3 个答案:

答案 0 :(得分:0)

这个definitley有效,我一直使用它,不要从onCreate调用它,从onStart或onResume调用它。

public static void showKeyboard(Activity act,EditText t){
            InputMethodManager imm = (InputMethodManager)act.getSystemService(Context.INPUT_METHOD_SERVICE);
            imm.showSoftInput(t, 0);
}

答案 1 :(得分:0)

softinputMode相关答案应该有效。如果您在清单中设置它没有运气,您可以尝试在onCreate()中设置它以指示在导航到活动时键盘的显示方式。

要在活动获得焦点时随时显示:

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);

答案 2 :(得分:0)

试试这个

 edtReceiver.setOnFocusChangeListener(new OnFocusChangeListener() {

                @Override
                public void onFocusChange(View v, boolean hasFocus) {
                    if(hasFocus)
                    {

                //  getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
                        InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
                        if(imm != null)
                        {
                        imm.toggleSoftInput(InputMethodManager.SHOW_FORCED,0);
                        }
                    }

                }
            });

这适合我。