Advertisement
Guest User

Untitled

a guest
May 23rd, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public void onCreate(Bundle savedInstanceState) {
  2. super.onCreate(savedInstanceState);
  3. setContentView(R.layout.main);
  4. TextView tv = (TextView) findViewById(R.id.caption_text);
  5.  
  6. tv.setText("foo");
  7. tv.postInvalidate();
  8.  
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement