我是靠谱客的博主 眯眯眼蜗牛,最近开发中收集的这篇文章主要介绍android 好用的log,GitHub - liompei/Zx: Android最好用的log打印和Toast输出工具,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

ZxLog

ZxLog更方便的打印日志,Toast

参考KLog做了一些优化

支持显示行号

支持显示Log所在函数名称

支持无Tag快捷打印

支持在Android Studio开发IDE中,点击函数名称,跳转至Log所在位置

支持Json,XML字符串打印

支持无限制字数打印

支持全局Tag

支持Toast

Android Studio

dependencies {

compile 'com.liompei:zxlog:1.0.0'

}

Eclipse

How to Use

Zx可打印普通日志和Json,xml字符串,支持无msg、无tag、有tag模式

Zx.d();

Zx.d("This is debug");

Zx.d("tag","This is debug")

输出结果

f437aee6e26adba8566372f20f83113c.png

主要方法有:

Log

Zx.v(); //verbose

Zx.d(); //debug

Zx.i(); //information

Zx.w(); //warning

Zx.e(); //error

Zx.wtf(); //What a Terrible Failure

Zx.json(); //parse json

Zx.xml(); //parse xml

若要设置全局Tag

Zx.initLog("TAG",true); //tag,isShowlog

Toast

注意:使用Toast必须初始化传入Context,否则将不显示

Zx.initToast(getApplicationContext(),true); //context,isShowToast

Zx.Show("This is Toast");

License

ZxLog is released under the Apache 2.0 license.

Copyright 2016 Liompei

Licensed under the Apache License, Version 2.0 (the "License");

you may not use this file except in compliance with the License.

You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software

distributed under the License is distributed on an "AS IS" BASIS,

WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

See the License for the specific language governing permissions and

limitations under the License.

最后

以上就是眯眯眼蜗牛为你收集整理的android 好用的log,GitHub - liompei/Zx: Android最好用的log打印和Toast输出工具的全部内容,希望文章能够帮你解决android 好用的log,GitHub - liompei/Zx: Android最好用的log打印和Toast输出工具所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(54)

评论列表共有 0 条评论

立即
投稿
返回
顶部