Android: Lock Components In Place With Soft Keyboard
The soft keyboard moves a TextView object up with it, (adjusting), and this causes the TextView to overlay another TextView that I'd like to be able to see. I need a way to lock th
Solution 1:
So, to answer this, the basic answer is that there is no way to do this.
You can try android:windowSoftInputMode
and use "adjustNothing,
" but apparently this doesn't work (and it didn't work for me either.)
Other than that, you're limited to adjustPan
and adjustResize
for the soft input repositioning, so you'll have to make your UI accommodate this huge issue.
Post a Comment for "Android: Lock Components In Place With Soft Keyboard"