zoukankan      html  css  js  c++  java
  • 简单的工具LogUtil、Toast

    简单的工具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();
        }
        
    }

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

  • 相关阅读:
    dedecms(4)
    dedecms(3)
    jquery-submit:f[s] is not a function
    修改mysql字符集
    CentOS-6.3安装配置SVN[转载]
    centos下编译安装curl拓展
    CSS杂集(标准流&多行垂直居中)
    杂集一(yii自动登陆过程浅析)
    webservice连接超时处理
    JavaScript 实现触点式弹出菜单插件
  • 原文地址:https://www.cnblogs.com/bhlsheji/p/4847756.html
Copyright © 2011-2022 走看看