android.util.log 使用方法

这个类中的方法的具体用法及实例怎么用啊我新手不太会用能详细一些么?具体的log中函数的用法非常感谢... 这个类中的方法的具体用法及实例怎么用啊
我新手 不太会用
能详细一些么 ?具体的log中函数的用法 非常感谢
展开
 我来答
java_deve
推荐于2016-01-12 · TA获得超过122个赞
知道答主
回答量:65
采纳率:0%
帮助的人:49.7万
展开全部
当然他是用DDMS的LogCat来查看,上面分别有显示V,D,I,W,E
D:表示Debug,就是代码中的Log.d("tips","Degug");
V:表示View,就是代码中的Log.v("tips","Verbose");
I:表示Debug,就是代码中的Log.i("tips","info");
E:表示Debug,就是代码中的Log.e("tips","Error");
……………………
不同的方法在logCat里面显示的颜色不同,你可以根据你的需要来决定用哪个方法,然后通过上面的V,D,I,W,E来过滤掉你不需要的东西

Verbose should never be compiled into an application except during development. Debug logs are compiled in but stripped at runtime. Error, warning and info logs are always kept.

Tip: Don't forget that when you make a call like Log.v(TAG, "index=" + i); that when you're building the string to pass into Log.d, Java uses a StringBuilder and at least three allocations occur: the StringBuilder itself, the buffer, and the String object. Realistically, there is also another buffer allocation and copy, and even more pressure on the gc. That means that if your log message is filtered out, you might be doing significant work and incurring significant overhead.
fly_fire
2009-03-23 · TA获得超过617个赞
知道小有建树答主
回答量:579
采纳率:0%
帮助的人:303万
展开全部
一般用于debug,可以用tool里的 ddms查看。。

里面函数一般是2个参数,前面的是标签,后面的为 提示 信息

比如 :

Log.d("Alarm","Set Error!");
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
kaofbfa
2009-03-25
知道答主
回答量:4
采纳率:0%
帮助的人:0
展开全部
Android的帮助文件里写得很全的

Log.d("Alarm","Set Error!");
Log.i("Alarm","Set Error!");

d,i表示log类型,alram指类别(可以用来filter),最后一个就是打印的真正内容了

6884330 Android技术群,可以大家讨论
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式