new to python and programming but i have coded a ui that will give me the output i want (a string) when i press a button. i can include the print command in my buttons function and will print the string to the console but i can't find a way to populate the textview with this string. i have tried the following ...
def buttonGo(sender);
textview1 = ui.TextView() # creates textview1 as a TextView
textview1.text = strlist # assigns textview1's text attribute to the string 'strlist'
fails with a message that i can edit ui.textview
very new to this but hope its something simple im overlooking.