1. 程式人生 > >小米新版MIUI Toast會顯示APP名字的問題解決

小米新版MIUI Toast會顯示APP名字的問題解決

最近開發中,採用小米4來測試,由於升級了系統,突然發現,小米手機toast都會帶應用名稱,這點很不爽,非常影響體驗,各種百度,也是看了一些大神的方法以後,自己寫了一個通用的Toast類,在這裡記錄一下,方便以後呼叫。在建立Toast的時候按照上述紅色的兩句建立即可解決小米MIUI Toast會顯示APP名字的問題。

(mToast == null) {
            //將這一句換成下面兩句
//            mToast = Toast.makeText(context, showmsg, duration);
            mToast=Toast.makeText(context,null,duration);
            mToast.setText(showmsg);
        } else {
            //如果當前Toast沒有消失, 直接顯示內容,不需要重新設定
            mToast.setText(showmsg);
        }
 

自定義Toast工具類

import android.content.Context;
import android.text.TextUtils;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.TextView;
import android.widget.Toast;

import com.xianglin.app.R;

public class ToastUtils {

    private static Toast mToast;

    private ToastUtils() {
        throw new AssertionError();
    }

    public static void show(Context context, int resId) {
        show(context, context.getResources().getText(resId), Toast.LENGTH_SHORT);
    }

    public static void show(Context context, int resId, int duration) {
        show(context, context.getResources().getText(resId), duration);
    }

    public static void show(Context context, CharSequence text) {
        show(context, text, Toast.LENGTH_SHORT);
    }

    public static void show(Context context, CharSequence text, int duration) {
        if (TextUtils.isEmpty(text)) {
            return;
        }
        if (context == null) {
            return;
        }
        if (mToast != null) {
            mToast.setText(text);
        } else {
            //如果這個Context是Activity,而Toast是非同步彈出,有可能彈出時Activity已經結束。所以正確使用方法,應該是傳入ApplicationContext,避免Toast導致記憶體洩漏
            mToast = Toast.makeText(context.getApplicationContext(), null, duration);  //小米手機首次彈出應用名
            mToast.setText(text);
        }
        mToast.show();
    }

    public static void show(Context context, int resId, Object... args) {
        show(context, String.format(context.getResources().getString(resId), args), Toast.LENGTH_SHORT);
    }

    public static void show(Context context, String format, Object... args) {
        show(context, String.format(format, args), Toast.LENGTH_SHORT);
    }

    public static void show(Context context, int resId, int duration, Object... args) {
        show(context, String.format(context.getResources().getString(resId), args), duration);
    }

    public static void show(Context context, String format, int duration, Object... args) {
        show(context, String.format(format, args), duration);
    }

//自定義Toast
    public static void show(Context context, String titles, String messages) {
        if (context == null)return;
         LayoutInflater inflater = LayoutInflater.from(context.getApplicationContext());
         View view = inflater.inflate(R.layout.toast_style, null);
         TextView title = view.findViewById(R.id.tv_title);
         title.setText(titles); //toast的標題
         TextView text = view.findViewById(R.id.tv_award);
         text.setText(messages); //toast內容
         Toast toast = new Toast(context.getApplicationContext());
         toast.setGravity(Gravity.CENTER, 12, 20);//setGravity用來設定Toast顯示的位置,相當於xml中的android:gravity或android:layout_gravity
         toast.setDuration(Toast.LENGTH_LONG);//setDuration方法:設定持續時間,以毫秒為單位。該方法是設定補間動畫時間長度的主要方法
         toast.setView(view); //新增檢視檔案
         toast.show();
    }

}