Android Question multiple edittext in scrollview

imadreem

New Member
Licensed User
Hello everyone


i am using multiple edittext in a scrollview
when checking for enterpressed or gotfocus i always get the data of the last edittext in the scrollview not the one i am using

Please help
 

zed

Active Member
Licensed User
Use code tags </> to display code.

Something like that.
B4X:
Dim edtxt(listitems.size) As B4XView 'number of edittext
For i = 0 To listitems.size -1 'your list
    Dim myEdTXT As EditText
    myEdTXT.Initialize("etView")
    edTXT(i) = myEdTXT
    edtxt(i).Tag = i
Next
 
Upvote 0

LucaMs

Expert
Licensed User
Longtime User
Tip: It's almost always better to use CustomListView instead of ScrollView. Even in your case, since it seems to me that all elements have the same layout (which would be better to load from file).
 
Last edited:
Upvote 0

imadreem

New Member
Licensed User
thank you Zed
i used your code and it is working perfect
 
Reactions: zed
Upvote 0
Cookies are required to use this site. You must accept them to continue using the site. Learn more…