爱程序网

安卓---Toast工具类,有点懒

来源: 阅读:

 

 

package com.liunan.myfirstapp.util;

import android.content.Context;
import android.widget.Toast;

/**
 * Toast工具类
 * 能少写就少写
 *
 * Created by 刘楠 on 2016-03-22.
 */
public class ToastUtils {


    /**
     * 弹出短时间提示
     *
     * @param context 上下文
     * @param msg     提示的信息
     */
    public static void showShort(Context context, String msg) {

        Toast.makeText(context, msg, Toast.LENGTH_SHORT).show();

    }


    /**
     * 弹出长时间提示
     *
     * @param context 上下文
     * @param msg     提示的信息
     */
    public static void showLong(Context context, String msg) {

        Toast.makeText(context, msg, Toast.LENGTH_LONG).show();

    }


}

 

关于爱程序网 - 联系我们 - 广告服务 - 友情链接 - 网站地图 - 版权声明 - 人才招聘 - 帮助