Advertisement
bruimafia

Untitled

Jun 1st, 2018
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.83 KB | None | 0 0
  1. public class MainActivity extends AppCompatActivity {
  2.  
  3.     final String TAG = "ExpressCourse";
  4.  
  5.     private Button mButton;
  6.     private EditText mResultEditText;
  7.     private TextView mInfoTextView;
  8.  
  9.  
  10.     @Override
  11.     protected void onCreate(Bundle savedInstanceState) {
  12.         super.onCreate(savedInstanceState);
  13.         setContentView(R.layout.activity_main);
  14.  
  15.         mButton = (Button) findViewById(R.id.buttonGetResult);
  16.         mResultEditText = (EditText) findViewById(R.id.editText);
  17.         mInfoTextView = (TextView) findViewById(textViewInfo);
  18.     }
  19.  
  20.     public void onClick(View view) {
  21.         new MyRunnable(); // создаём новый поток
  22.  
  23.         try {
  24.             for (int i = 5; i > 0; i--) {
  25.                 Log.i(TAG, "Главный поток: " + i);
  26.                 Thread.sleep(1000);
  27.             }
  28.         } catch (InterruptedException e) {
  29.             Log.i(TAG, "Главный поток прерван");
  30.         }
  31.     }
  32.  
  33.     class MyRunnable implements Runnable {
  34.         Thread thread;
  35.  
  36.         // Конструктор
  37.         MyRunnable() {
  38.             // Создаём новый второй поток
  39.             thread = new Thread(this, "Поток для примера");
  40.             Log.i(TAG, "Создан второй поток " + thread);
  41.             thread.start(); // Запускаем поток
  42.         }
  43.  
  44.         // Обязательный метод для интерфейса Runnable
  45.         public void run() {
  46.             try {
  47.                 for (int i = 5; i > 0; i--) {
  48.                     Log.i(TAG, "Второй поток: " + i);
  49.                     Thread.sleep(500);
  50.                 }
  51.             } catch (InterruptedException e) {
  52.                 Log.i(TAG, "Второй поток прерван");
  53.             }
  54.         }
  55.     }
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement