Android Question Show keyboard on edittext

Blue.Sky

Active Member
Licensed User
Longtime User
Hi
I have a scrollview that containt layout with any edittext view
When i focus on edittext,scrollview scroll to it view and show keyborad
But sometime keyboard is place on edittext and i dont see edittext
Even i use a one panel and set 2 edittext in panel and show keyboard for typing that again i dont see edittext
How solve it? (i use IME and wouldn't successfull)
 

Blue.Sky

Active Member
Licensed User
Longtime User
You should use IME and handle the HeightChanged event.
Erel in below link,i have a textedit and when keyboard is shown,edittext is behind and i cannot use IME
HeightChange dont help me
 
Upvote 0

Computersmith64

Well-Known Member
Licensed User
Longtime User
Try adding this to your manifest (replace [Activity] with the name of the activity that the edittext is in):

B4X:
SetActivityAttribute([Activity], android:windowSoftInputMode, adjustPan|stateHidden)
 
Upvote 0
Top