I\'m having a problem with setting text to a TextView:
TextView android:editable = \"true\".
In my .java it seems like that this should wor
Or you can do this way :
((TextView)findViewById(R.id.this_is_the_id_of_textview)).setText("Test");