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
The code should instead be something like this:
TextView text = (TextView) findViewById(R.id.this_is_the_id_of_textview); text.setText("test");