码迷,mamicode.com
首页 > 其他好文 > 详细

简单的工具LogUtil、Toast

时间:2015-09-30 08:29:51      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:

简单的工具LogUtil、Toast     能够用了

import android.content.Context;

import android.util.Log;
import android.widget.Toast;

public class LogUtil {

    public static void e(String tag, String msg) {
        if (tag == null || msg == null) {
            return;
        }
        Log.e(tag, msg);
    }

    public static void w(String tag, String msg) {
        if (tag == null || msg == null) {
            return;
        }
        Log.w(tag, msg);
    }

    public static void i(String tag, String msg) {
        if (tag == null || msg == null) {
            return;
        }
        Log.i(tag, msg);
    }

    public static void d(String tag, String msg) {
        if (tag == null || msg == null) {
            return;
        }
        Log.d(tag, msg);
    }
    
    public static void show(Context context, String str) {
        Toast.makeText(context, str, Toast.LENGTH_SHORT).show();
    }
    
}

版权声明:本文博主原创文章,博客,未经同意不得转载。

简单的工具LogUtil、Toast

标签:

原文地址:http://www.cnblogs.com/bhlsheji/p/4847756.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!