How to draw view on top of soft keyboard like WhatsApp?

后端 未结 7 893
一个人的身影
一个人的身影 2020-12-07 19:26

I want to know how it\'s possible to add View on top of Keyboard like WhatsApp and Hangout. In chat screen, they insert emoticons view on top of the opened soft

7条回答
  •  天涯浪人
    2020-12-07 19:42

    @jirkarrr, Why don't you add the keyboardInfoContainer like this:

    WindowManager wm = getWindowManager();
    WindowManager.LayoutParams lps = new WindowManager.LayoutParams();
    lps.x = 0; lps.y = keyboardHeight;
    wm.addView(keyboardInfoContainer, lps);
    

    I do as your code, but it cannot show out the keyboardInfoContainer.

提交回复
热议问题