(Context context, int resId, int duration)
| 35 | } |
| 36 | |
| 37 | public static ToastEx makeText(Context context, int resId, int duration) throws Resources.NotFoundException { |
| 38 | return makeText(context, context.getText(resId), duration); |
| 39 | } |
| 40 | |
| 41 | public static ToastEx makeText(Context context, CharSequence text, int duration) { |
| 42 | ToastEx toast = new ToastEx(context); |
no test coverage detected