(Context context,int msgId)
| 10 | public class ToastUtils { |
| 11 | |
| 12 | public static void show(Context context,int msgId) { |
| 13 | show(context,context.getResources().getString(msgId)); |
| 14 | } |
| 15 | |
| 16 | public static void show(Context context,String msg) { |
| 17 | Toast.makeText(context,msg,Toast.LENGTH_SHORT).show(); |
no outgoing calls
no test coverage detected