Reputation: 2930
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.
I have searched a lot but i didn't get any success yet. Any help would be appreciated.
Thanks.
Upvotes: 1
Views: 2194
Reputation: 5075
Use this attribute into your activity. This will show your tabs upside the keyboard.
android:windowSoftInputMode="stateAlwaysHidden|adjustResize"
Upvotes: 0
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 ?
Upvotes: 1