Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.example.dns.translateapp;
- import android.nfc.Tag;
- import android.os.Bundle;
- import android.util.Log;
- /**
- * Created by dns on 20.03.2017.
- */
- public class GoGoGo extends Thread {
- public int a = 0;
- String a1 = "ZALUPA";
- public void run(){
- try {
- for(int i = 0;i<101;i++) {
- a++;
- Thread.sleep(100);
- Log.d("Поехали!", Integer.toString(a));
- }
- } catch (InterruptedException e) {
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement