我使用Keyboard标签在我的应用程序中创建了自定义键盘。我在屏幕上的RelativeLayout
添加了这个键盘,如。
Keyboard customKeyboard = new Keyboard(getActivity(), R.layout.keyboard);
CustomKeyboard mCustomKeyboard = new CustomKeyboard(getActivity(), this);
mCustomKeyboard.setKeyboard(customKeyboard);
RelativeLayout relLayKeyboard.addView(mCustomKeyboard);
最初我为{em> relLayKeyboard 设置android:visibility="invisible"
,一旦我触及EditText
我将可见性设置为View.VISIBLE
。
这个键盘我工作正常,但如果屏幕上有更多EditText
,那么它就会出现在EditText
的顶部。我希望在我的屏幕上打开 CustomKeyboard 后推送视图。