Guest User

Untitled

a guest
Dec 18th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. protected Void doInBackground(Void... arg0) {
  2. Handler myHandler = new Handler();
  3. myHandler.postDelayed(new Runnable() {
  4. public void run() {
  5. myData = myParser.parsedStringList();
  6. publishProgress();
  7. }
  8. }, 10000);
  9. return null;
  10. }
Add Comment
Please, Sign In to add comment