Android虚拟键盘未显示

时间:2012-02-20 11:14:07

标签: android keyboard virtual

我在Android上遇到虚拟键盘问题。问题是我无法可靠地提起/隐藏它。

这是一个拒绝在我测试的三个设备上打开键盘的代码(ZTE Blade,Galaxy Nexus和Acer A500)。

我可以隐藏键盘,我可以切换它,但我无法显示它。我可以使用切换来显示/隐藏它,但它不够可靠(因为似乎无法查看键盘是否显示)。

完整代码,看看你是否可以使它工作:

package com.test.keyboardtest;

import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.view.View;
import android.view.inputmethod.InputMethodManager;
import android.widget.Button;
import android.widget.LinearLayout;
import android.widget.TextView;
    public class KeyboardTestActivity extends Activity {
    LinearLayout myLayout = null;
    TextView myView = null;
    Button toggleButton = null;
    Button showButton = null;
    Button hideButton = null;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        myLayout = new LinearLayout(this);
        myView = new TextView(this);
        showButton = new Button(this);
        hideButton = new Button(this);
        toggleButton = new Button(this);

        myLayout.setOrientation(LinearLayout.VERTICAL);
        myLayout.addView(myView); 
        myLayout.addView(showButton);
        myLayout.addView(hideButton);
        myLayout.addView(toggleButton);


        showButton.setText("Show Keyboard");
        showButton.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
                InputMethodManager mgr = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
                mgr.showSoftInput(myView, 0 );
            }
        });

        hideButton.setText("Hide Keyboard");
        hideButton.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
                InputMethodManager mgr = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
                mgr.hideSoftInputFromWindow(myView.getWindowToken(), 0 );
            }
        });

        toggleButton.setText("Toggle Keyboard");
        toggleButton.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
                InputMethodManager mgr = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);                
                mgr.toggleSoftInput(0,0);
            }
        });
        this.setContentView(myLayout);        
    }
}

1 个答案:

答案 0 :(得分:0)

尝试这个

显示键盘:

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

隐藏键盘:

InputMethodManager imm =(InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);              imm.hideSoftInputFromWindow(editText.getWindowToken(),0);