How can I move button like below image : tton when keyboard is show display.
Inside your Manifest file, in your activity, add android:windowSoftInputMode="stateVisible|adjustResize"
. Example:
<activity
android:name=".MainActivity"
android:windowSoftInputMode="stateVisible|adjustResize"
....>
</activity>