如何在 Android 中獲取當前執行緒的 getAllStackTraces?
在瞭解示例之前,我們應該知道什麼是執行緒。執行緒是一個輕量級的子程序,它可以在不中斷 UI 的情況下執行後臺操作。此示例演示如何獲取 Android 中當前執行緒的 getAllStackTraces。
步驟 1 − 在 Android Studio 中新建一個專案,轉到 File ⇒ New Project 並填寫所有必需的詳細資訊以建立一個新專案。
步驟 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>
在上述程式碼中,我們使用了文字檢視。它包含有關當前執行緒堆疊跟蹤的資訊。
步驟 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.getAllStackTraces());
}
}讓我們嘗試執行你的應用程式。我假設你已將實際的 Android 移動裝置與電腦連線起來。要從 Android Studio 執行該應用,請開啟你的一個專案活動檔案,然後從工具欄中單擊執行
圖示。選擇你的移動裝置作為選項,然後檢查移動裝置它將顯示你的預設螢幕 −

在上述結果中,它顯示的是當前執行緒的堆疊跟蹤。
點選 此處 下載專案程式碼
廣告
資料結構
網路
RDBMS
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP