AlertUtils.java 251 Bytes edit raw blame history 1 2 3 4 5 6 7 8 9 10 11 package com.hjx.personalcenter.util; import android.content.Context; import android.widget.Toast; public class AlertUtils { public static void showToast(Context context, String msg) { Toast.makeText(context, msg, Toast.LENGTH_LONG).show(); } }