0

我有 EditText,当用户单击此 EditText 时,我需要显示我的自定义键盘。(我不需要将此键盘设置为默认,只需使用我的editView显示一次)如何制作?

4

2 回答 2

1

在xml中,设置如下

android:inputMethod="com.myapp.mykeyboard"
于 2013-02-18T07:55:54.100 回答
1

为你的键盘做一个布局,然后在你的 oncreate 方法中做这样的事情

    setContentView(R.layout.main);
        // adjusting key regarding window sizes
        setKeys();
        setFrow();
        setSrow();
        setTrow();
        setForow();
        mEt = (EditText) findViewById(R.id.xEt);
        mEt.setOnTouchListener(this);
        mEt.setOnFocusChangeListener(this);
        mEt1 = (EditText) findViewById(R.id.et1);

        mEt1.setOnTouchListener(this);
        mEt1.setOnFocusChangeListener(this);
        mEt.setOnClickListener(this);
        mEt1.setOnClickListener(this);
        mLayout = (RelativeLayout) findViewById(R.id.xK1);
        mKLayout = (RelativeLayout) findViewById(R.id.xKeyBoard);


@Override
public boolean onTouch(View v, MotionEvent event) {
    if (v == mEt) {
        hideDefaultKeyboard();
        enableKeyboard();

    }
    if (v == mEt1) {
        hideDefaultKeyboard();
        enableKeyboard();

    }
    return true;
}
private void hideDefaultKeyboard() {
    getWindow().setSoftInputMode(
            WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);

}
private void enableKeyboard() {

    mLayout.setVisibility(RelativeLayout.VISIBLE);
    mKLayout.setVisibility(RelativeLayout.VISIBLE);

}

// Disable customized keyboard
private void disableKeyboard() {
    mLayout.setVisibility(RelativeLayout.INVISIBLE);
    mKLayout.setVisibility(RelativeLayout.INVISIBLE);

}
于 2013-02-18T08:00:14.043 回答