小米手机Toast显示app_name
2018-06-19 本文已影响0人
qweqwrqwer
小米手机的Toast会显示app_name,解决方法:
public class ToastUtil {
//小米手机自带问题,Toast会显示app_name
private static Toast toast;
public static void show(Context context, String info) {
if (toast == null) {
toast = Toast.makeText(context, null, Toast.LENGTH_SHORT);
toast.setText(info);
} else {
toast.setText(info);
}
toast.show();
}
}