Android Question How to get input from EditText into string variable

bvonlaar

Member
Licensed User
Longtime User
Hi all,
I´m quite new and coming from VB. I need to get an user input as string which I can copy into another string.
After a long search in the forum I resume that the way is quite different in comparison to VB.
How can I realize this?

Benedikt
 

DonManfred

Expert
Licensed User
Longtime User
B4X:
dim value as string
value = myeditfield.text
 
Upvote 0
Top