Fork me on GitHub

安卓---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();

    }


}

 

posted @ 2016-03-24 00:26  森林森  阅读(1157)  评论(0编辑  收藏  举报