解决Toast在部分机型上关闭通知时无法弹出

时间:2025-04-02 16:35:05

本文章转载至:/u010998832/article/details/72885514

根据原文作者的内容结合于我的项目进行了一些改动。

首先TiastUtils工具类:

import ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;

import ;

public class ToastUtils {

    public static final int LENGTH_SHORT = 0x00;
    public static final int LENGTH_LONG = 0x01;

    private final int ANIMATION_DURATION = 600;

    public Context mContext;
    public String msg;
    private int HIDE_DELAY = 2000;

//    public static boolean isRunning = false;

    private Handler mHandler = new Handler();

    public static Stack<ToastUtils> stack = new Stack();

    // 表示吐司里显示的文字
    public static ToastUtils makeText(Context context, String message,
                                     int HIDE_DELAY) {
        ToastUtils utils = new ToastUtils();
         = context;
         = message;

        if (HIDE_DELAY == LENGTH_LONG) {
            utils.HIDE_DELAY = 2500;
        } else {
            utils.HIDE_DELAY = 1500;
        }

        return utils;
    }

    public static void wakeUp() {
//        isRunning = true;
        if (!()) {
            ToastUtils util = ();
            ();

        } else {
//            isRunning = false;
        }


    }

    public void doshow() {
        final ViewGroup container = (ViewGroup) ((Activity) mContext)
                .findViewById();
        final View mView = ((Activity) mContext).getLayoutInflater().inflate(
                .toast_layout, null);
        (mView);

        final LinearLayout mContainer = (LinearLayout) ();
        ();
        TextView mTextView = (TextView) ();
        (msg);

        // 显示动画
        AlphaAnimation mFadeInAnimation = new AlphaAnimation(0.0f, 1.0f);
        // 消失动画
        final AlphaAnimation mFadeOutAnimation = new AlphaAnimation(1.0f, 0.0f);
        (ANIMATION_DURATION);
        mFadeOutAnimation
                .setAnimationListener(new () {
                    @Override
                    public void onAnimationStart(Animation animation) {
                        // 消失动画后更改状态为 未显示

                    }

                    @Override
                    public void onAnimationEnd(Animation animation) {
                        // 隐藏布局,不使用remove方法为防止多次创建多个布局
                        ();
                        (mView);
                        wakeUp();
                    }

                    @Override
                    public void onAnimationRepeat(Animation animation) {

                    }
                });
        ();

        (ANIMATION_DURATION);

        (mFadeInAnimation);
        (new Runnable() {
            @Override
            public void run() {
                (mFadeOutAnimation);
            }
        }, HIDE_DELAY);
    }

    public void show() {
        (this);
//        if (!isRunning) {
            wakeUp();

//        }
    }

}

在这其中我将isRunning给注释了,解释:这个字符串就是防止重复点击重复出现的,但是在我测试的时候有时候会发生之触发一次,就不会再次出现了,为防止意外,就直接去掉这个限制。

继续布局文件:

<LinearLayout xmlns:andro
    android:
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginBottom="60dp"
    android:gravity="bottom|center"
    android:orientation="vertical"
    android:paddingLeft="50dp"
    android:paddingRight="50dp">

    <LinearLayout android:
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:layout_marginBottom="50dp"
        android:padding="8dp">

        <TextView android:
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:layout_margin="5dp"
            android:paddingTop="10dp"
            android:paddingBottom="10dp"
            android:paddingLeft="20dp"
            android:paddingRight="20dp"
            android:layout_weight="1"
            android:gravity="center"
            android:alpha="0.8"
            android:background="@drawable/shape_toastutils_bg"
            android:shadowColor="#BB000000"
            android:shadowRadius="2.75"
            android:textSize="12sp"
            android:textColor="#ffffff" />
    </LinearLayout>
</LinearLayout>

这个布局就是绘制一个吐司的背景以及要显示文字的view

吐司背景的样式:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:andro>
    <solid android:color="#000000" />
    <corners android:radius="40dp" />
</shape>
为了更贴近于原生的吐司。
使用方法:
(context, "", ToastUtils.LENGTH_LONG).show();