自定义键盘从底部打开时如何向上推视图

时间:2015-07-30 09:33:27

标签: android custom-keyboard

我使用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 后推送视图。

0 个答案:

没有答案