Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. MainActivity.this.runOnUiThread(new Runnable() {
  2. public void run() {
  3. Log.d("UI thread", "I am the UI thread");
  4. }
  5. });
  6.  
  7. timer = new CountDownTimer(10* 1000, 1000) { //каждую секунду в течении 10 секунд
  8.  
  9. public void onTick(long millisUntilFinished) {
  10. String text = GetNewText();
  11. TextView tv.setText();
  12. }
  13.  
  14. public void onFinish() {
  15. super.onFinish(result);
  16. }
  17. }.start();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement