如何在 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 运行该应用,请打开你的一个项目活动文件,然后从工具栏中单击运行  图标。选择你的移动设备作为选项,然后检查移动设备它将显示你的默认屏幕 −

在上述结果中,它显示的是当前线程的堆栈跟踪。

点击 此处 下载项目代码

更新日期:29-6 月-2020

176 次浏览

开始你的 职业生涯

通过完成该课程获得认证

开始
广告