Toast的封装
public class Util {
private static Toast toast;
public static void showToast(Context context, String content){
if(toast == null){
toast = Toast.makeText(context,content,Toast.LENGTH_SHORT);
} else {
toast.setText(content );
}
toast.show();
}
}