如何獲取安卓中的當前執行緒狀態?
在瞭解示例之前,我們應該知道什麼是執行緒。一個執行緒是一個輕量級的子程序,它將在不中斷 UI 的情況下執行後臺操作。本示例展示瞭如何在安卓中獲取當前執行緒狀態。
步驟 1 − 在 Android Studio 中建立一個新專案,轉到檔案 ⇒ 新專案,並填寫所有必需的詳細資訊來建立一個新專案。
步驟 2 − 向 res/layout/activity_main.xml 新增以下程式碼。
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:gravity="center_horizontal" android:layout_marginTop="100dp" tools:context=".MainActivity"> <TextView android:id="@+id/text" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </LinearLayout>
在上面的程式碼中,我們取了 textview。它包含了有關當前執行緒狀態的資訊。
步驟 3 − 向 src/MainActivity.java 新增以下程式碼
package com.example.myapplication; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.widget.TextView; public class MainActivity extends AppCompatActivity { TextView textView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); textView = findViewById(R.id.text); textView.setText("Current thread: " + Thread.currentThread().getState()); } }
讓我們嘗試執行你的應用程式。我假設你已經連線了實際的安卓移動裝置到你的計算機。從安卓 studio 執行應用程式,開啟你的一個專案活動檔案,並單擊工具欄中的執行 圖示。選擇你的移動裝置作為選項,然後檢查將會顯示你的預設介面的移動裝置 −
以上結果顯示了當前執行緒狀態。
點選 此處 下載專案程式碼
廣告