List of usage examples for android.widget Toast LENGTH_SHORT
int LENGTH_SHORT
To view the source code for android.widget Toast LENGTH_SHORT.
Click Source Link
From source file:Main.java
public static void toast(Context context, String msg) { Toast.makeText(context, msg, Toast.LENGTH_SHORT).show(); }
From source file:Main.java
public static void showShort(Context context, String msg) { Toast.makeText(context, msg, Toast.LENGTH_SHORT).show(); }
From source file:Main.java
public static void alert(Context context, String string) { Toast.makeText(context, string, Toast.LENGTH_SHORT).show(); }
From source file:Main.java
public static void openToast(Context context, String str) { Toast.makeText(context, str, Toast.LENGTH_SHORT).show(); }
From source file:Main.java
public static void SSMessage(Activity context, String text) { Toast.makeText(context, text, Toast.LENGTH_SHORT).show(); }
From source file:Main.java
public static void showMsg(Context context, String msg) { Toast.makeText(context, msg, Toast.LENGTH_SHORT).show(); }
From source file:Main.java
public static void showToast(Context context, String tip) { Toast.makeText(context, tip, Toast.LENGTH_SHORT).show(); }
From source file:Main.java
public static void toastShowMsg(Context context, String msg) { Toast.makeText(context, msg, Toast.LENGTH_SHORT).show(); }
From source file:Main.java
public static void alertMsg(Context context, String msg) { Toast.makeText(context, msg, Toast.LENGTH_SHORT).show(); }
From source file:Main.java
public static final void showToastShort(Activity ctx, String text) { Toast.makeText(ctx, text, Toast.LENGTH_SHORT).show(); }