如何在安卓中获取当前线程名称?


在进入示例之前,我们应该了解线程是什么。线程是一种轻量级的子进程,它将在不中断 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>

在上面的代码中,我们已经选择了文本视图。它包含有关当前线程名称的信息。

步骤 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());
   }
}

我们尝试运行你的应用程序。我假设你已将实际的 Android 移动设备连接到你的计算机。要从 Android Studio 运行应用程序,请打开项目的活动文件之一,然后单击工具栏中的 图标。选择你的移动设备作为选项,然后检查你的移动设备,它将显示你的默认屏幕 −

在以上结果中,它显示当前线程名称作为主线程。

单击此处下载项目代码

更新于:2020 年 6 月 29 日

5K+ 查看次数

开启您的 职业生涯

通过完成课程获得认证

开始
广告