如何从 Android 线程中显示 Toast 消息?


此示例演示如何在 Android 中从线程中显示 Toast 消息。

步骤 1 − 在 Android Studio 中创建一个新项目,转到文件 ⇒ 新项目,并填写所有必需的详细信息以创建一个新项目。

步骤 2 − 将以下代码添加到 res/layout/activity_main.xml。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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"
   tools:context=".MainActivity">
</RelativeLayout>

步骤 3 − 将以下代码添加到 src/MainActivity.java

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
   Toast toast;
   Thread thread;
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      toast = Toast.makeText(this, "This is a toast from Thread", Toast.LENGTH_SHORT);
      thread = new Thread(new Runnable() {
         @Override
         public void run() {
            for (int i=0; i<1000; i++){
               try {
                  Thread.sleep(1000);
                  toast.show();
                  Thread.sleep(1000);
               } catch (InterruptedException e) {
                  e.printStackTrace();
               }
            }
         }
      });
      thread.start();
   }
}

步骤 4 - 将以下代码添加到 androidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="app.com.sample">
   <application
      android:allowBackup="true"
      android:icon="@mipmap/ic_launcher"
      android:label="@string/app_name"
      android:roundIcon="@mipmap/ic_launcher_round"
      android:supportsRtl="true"
      android:theme="@style/AppTheme">
      <activity android:name=".MainActivity">
         <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
         </intent-filter>
      </activity>
   </application>
</manifest>

让我们尝试运行你的应用程序。我假设你已将实际的 Android 移动设备与你的电脑连接起来。要从 Android Studio 运行应用,请打开你的项目中一个 activity 文件,然后点击工具栏上的运行 播放图标 图标。将移动设备选为选项,然后检查移动设备,它将显示默认屏幕 –

点击 此处 下载项目代码。

更新于: 2020 年 7 月 1 日

1K+ 浏览

开启你的 职业生涯

完成课程,获得认证

开始学习
广告