package com.likebamboo.osa.android.utils; import android.content.Context; import android.widget.Toast; /** * toast util * * @author likebamboo * @since 2015-06-08 */ public class ToastUtil { 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 (context == null) { return; } Toast.makeText(context, text, duration).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); } }