1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
| public class MyUtils {
private static Toasttoast;
private static Handlermhandler =new Handler();
private static Runnable r =new Runnable() {
public void run() {
isShowing=false;
toast.cancel();
}
};
private static BooleanisShowing=false;
public static void showToast(final Context context, final String msg){
if (!isShowing){
if (toast ==null)
toast = Toast.makeText(context, msg, Toast.LENGTH_SHORT);
toast.setGravity(Gravity.CENTER, 0, 0);
Activity context1 = (Activity) context;
LayoutInflater layoutInflater = context1.getLayoutInflater();
View inflate = layoutInflater.inflate(R.layout.toast_layout, null);
TextView toast_msg = inflate.findViewById(R.id.toast_msg);
toast_msg.setText(msg);
toast.setView(inflate);
toast.show();
isShowing=true;
mhandler.postDelayed(r, 2000);
}
}
public static void showToast(final Context context, final String msg,int time){
if (!isShowing){
if (toast ==null)
toast = Toast.makeText(context, msg, Toast.LENGTH_SHORT);
toast.setGravity(Gravity.CENTER, 0, 0);
Activity context1 = (Activity) context;
LayoutInflater layoutInflater = context1.getLayoutInflater();
View inflate = layoutInflater.inflate(R.layout.toast_layout, null);
TextView toast_msg = inflate.findViewById(R.id.toast_msg);
toast_msg.setText(msg);
toast.setView(inflate);
toast.show();
isShowing=true;
mhandler.postDelayed(r, time);
}
}
}
|