Dhruvil Patel
Dhruvil Patel

Reputation: 2930

Change Position of native keyboard

In my application i am using Tab activities to switch from one activity to another.

I want to know that is there any way to change our native android keyboard position? Because i want to display native keyboard above Tab that i have used in my application ?

Thus user can easily navigate while typing.

enter image description here

I have searched a lot but i didn't get any success yet. Any help would be appreciated.

Thanks.

Upvotes: 1

Views: 2194

Answers (2)

Adnan
Adnan

Reputation: 5075

Use this attribute into your activity. This will show your tabs upside the keyboard.

android:windowSoftInputMode="stateAlwaysHidden|adjustResize"

Upvotes: 0

CommonsWare
CommonsWare

Reputation: 1007399

I want to know that is there any way to change our native android keyboard position?

No.

Because i want to display native keyboard above Tab that i have used in my application ?

Do not use bottom tab bars.

Upvotes: 1

Related Questions