AlertUtils.java 251 Bytes
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();
	}
}