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

Well, I have created a sample keyboard for chatting here… Here, I use popup window for showing popup window and height of popup is calculated dynamically by height of keyboard // Initially defining default height of keyboard which is equal to 230 dip final float popUpheight = getResources().getDimension( R.dimen.keyboard_height); changeKeyboardHeight((int) popUpheight); // Creating a pop … Read more

tech