iT邦幫忙

2021 iThome 鐵人賽

DAY 24
0
自我挑戰組

Android 初新者系列 第 24

Day24 - Toast

  • 分享至 

  • xImage
  •  

Toast功能是可以在螢幕的下方顯示一段即時的訊息文字
但文字會在幾秒後消失
在Toast跳出來時,並不會影響使用者操作APP
Toast搭配makeTake使用
可以依照你要的訊息、T顯示時間長短建立

開始

這個功能可以不用拉任何元件出來,就可以顯示
但這邊位的方便查看功能是否正常
拉一個按鈕Button出來
使用點一下事件處理驗證Toast功能是否成功

activity_main.xml

拉一個Button出來就好瞜

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <Button
        android:id="@+id/btn_toast"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Toast測試"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

MainActivity.java

這邊要新增一個事件:
1.熟悉的Button的setOnClickListener()
然後在裡面寫Toast.makeText()

Toast.makeText(MainActivity.this,"成功",Toast.LENGTH_LONG).show();

"成功":為你想顯示的文字內容
Toast.LENGTH_LONG:為你想讓它顯示於螢幕的時間
有兩種時長:Toast.LENGTH_LONG(3.5秒)、Toast.LENGTH_SHORT(2秒)
完整程式:

package com.example.listview;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Button btn_toast = findViewById(R.id.btn_toast);
        btn_toast.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Toast.makeText(MainActivity.this,"成功",Toast.LENGTH_SHORT).show();
            }
        });
    }
}

執行結果:

  • 點擊按鈕
    https://ithelp.ithome.com.tw/upload/images/20211001/201417694JfSrJhBos.png

上一篇
Day23 - ListView
下一篇
Day25 - Dialog介紹
系列文
Android 初新者30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言