Custom buttons on top of the keyboard layout

I need to add some custom buttons for an EditText that sits on top of an Android keyboard. As in the image: enter image description here

These buttons should be hidden if there is no keyboard

+4
source share
1 answer

Try using RelativeLayout with the android property: alignParentBottom = "true". This should contain any content that you post with this property in a RelativeLayout at the bottom of the screen.

+7
source

All Articles