Android Question Scrollview, EditText and Keyboard Problem

ykucuk

Well-Known Member
Licensed User
Longtime User
Hello,

I have 10 edit ext in ScrollView (created at runtime). When i enter the 5. edit text keyboard appear and fill almost half of screen. Users can't see next edittext until close to keyboard with force button.

is there any way move to up clicked edit text above of keyboard.

Thanks
 

ykucuk

Well-Known Member
Licensed User
Longtime User
Hello erel,
thanks for suggestion. I think i am closing to solve my problem but my next step is "next button" for edittext and request focus for next edit view which created runtime with same tag.

I added my project source code and i ll be very happy if u check what is wrong with it ?

best regards
 

Attachments

  • NextButtononKeyboard.zip
    7.4 KB · Views: 332
Upvote 0

mangojack

Expert
Licensed User
Longtime User
Problem is there is no Next button on keyboard while entering edittext
B4X:
   For  i= 0 To 10
   Dim Edt As EditText
   Edt.Initialize("Edt")
   Edt.Color= Colors.White
   Edt.TextColor= Colors.Black
   Edt.SingleLine = True
   'Edt.ForceDoneButton= True  '@@the last edt will automatically be 'Done'

if the Edt's are to be multi line then this will not work ...
 
Upvote 0
Cookies are required to use this site. You must accept them to continue using the site. Learn more…