Computer >> Máy Tính >  >> Lập trình >> Android

Làm cách nào để chúng tôi sử dụng runOnUiThread trong Android?

Trước khi đi vào ví dụ, chúng ta nên biết runOnUiThread () trong android là gì. Đôi khi Main thread thực hiện một số thao tác nặng. nếu người dùng muốn thêm một số hoạt động bổ sung trên giao diện người dùng, nó sẽ tải và cung cấp ANR. Sử dụng runOnUiThread để thực hiện các hoạt động trở lại trên chuỗi công nhân và cập nhật kết quả trên chuỗi chính.

Ví dụ này minh họa về Cách chúng tôi sử dụng runOnUiThread trong Android.

Bước 1 - Tạo một dự án mới trong Android Studio, đi tới Tệp ⇒ Dự án Mới và điền tất cả các chi tiết cần thiết để tạo một dự án mới.

Bước 2 - Thêm mã sau vào res / layout / activity_main.xml.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="https://schemas.android.com/apk/res/android"
   android:id="@+id/parent"
   xmlns:tools="https://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   tools:context=".MainActivity"
   android:gravity="center"
   android:orientation="vertical">
   <Button
      android:id="@+id/runOn"
      android:text="Run"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content" />
   <TextView
      android:id="@+id/text"
      android:textSize="20sp"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content" />
</LinearLayout>

Trong đoạn mã trên, chúng tôi đã sử dụng một nút và chế độ xem văn bản, khi bạn nhấp vào nút, nó sẽ cập nhật chế độ xem văn bản.

Bước 3 - Thêm mã sau vào src / MainActivity.java

package com.example.andy.myapplication;
import android.os.Build;
import android.os.Bundle;
import android.support.annotation.RequiresApi;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class MainActivity extends AppCompatActivity {
   int i = 0;
   @RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN)
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      final TextView textView = findViewById(R.id.text);
      final Button runOn = findViewById(R.id.runOn);
      runOn.setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
            new Thread() {
               public void run() {
                  while (i++ < 1000) {
                     try {
                        runOnUiThread(new Runnable() {
                           @Override
                           public void run() {
                              textView.setText("#" + i);
                           }
                        });
                        Thread.sleep(300);
                     } catch (InterruptedException e) {
                        e.printStackTrace();
                     }
                  }
               }
            }.start();
         }
      });
   }
}

Trong đoạn mã trên, khi người dùng nhấp vào nút. Nó sẽ cập nhật chế độ xem văn bản bằng runOnUiThread () như hình dưới đây -

new Thread() {
   public void run() {
      while (i++ < 1000) {
         try {
            runOnUiThread(new Runnable() {
               @Override
               public void run() {
                  textView.setText("#" + i);
               }
            });
            Thread.sleep(300);
         } catch (InterruptedException e) {
            e.printStackTrace();
         }
      }
   }
}.start();

Hãy thử chạy ứng dụng của bạn. Tôi giả sử bạn đã kết nối thiết bị Di động Android thực tế với máy tính của mình. Để chạy ứng dụng từ android studio, hãy mở một trong các tệp hoạt động của dự án của bạn và nhấp vào biểu tượng Chạy từ thanh công cụ. Chọn thiết bị di động của bạn làm tùy chọn, sau đó kiểm tra thiết bị di động sẽ hiển thị màn hình mặc định của bạn -

Làm cách nào để chúng tôi sử dụng runOnUiThread trong Android?

Trong kết quả trên, nó hiển thị màn hình ban đầu. khi người dùng nhấp vào nút run, nó sẽ cập nhật chế độ xem văn bản như hình dưới đây -

Làm cách nào để chúng tôi sử dụng runOnUiThread trong Android?