我可以在KeyboardView中放置GridLayout吗?

时间:2015-08-06 13:27:20

标签: android xml android-softkeyboard grid-layout ime

有没有办法在Android中的KeyboardView中使用GridLayout和一些图片?我试图在xml中编写它,但它给了我错误,我无法在KeyboardView中使用该元素。

1 个答案:

答案 0 :(得分:2)

为什么你当时使用KeyboardView

创建InputMethodService并在onCreateInputView()中,返回您要显示的任何布局。

@Override
public View onCreateInputView() {
        final View root = getLayoutInflater().inflate(R.layout.keyboard_layout, null);         

         //set all the click listeners for your views

        return root;
}