Hello, I've got to missing something completely stupid on this one since updating a TextView should be an easy task. I have an Activity class that is an observer of another that receives messages. In my Activity's onCreate I do the following and it works fine.
theStatus = (TextView) findViewById(R.id.theStatus);
theStatus.setText("waiting");
Later when the message activity receives a new message it hands it off to it's observer (my Activity)
public void statusUpdate( GenericMessage aMessage )
{
String statusText = aMessage.getDetails();
theStatus.setText(statusText);
theSessionStatus.invalidate(); // I've tried with and without this call
}
However the screen doesn't update. I must be overlooking something... Thanks for any input!