android.util.log 使用方法
这个类中的方法的具体用法及实例怎么用啊我新手不太会用能详细一些么?具体的log中函数的用法非常感谢...
这个类中的方法的具体用法及实例怎么用啊
我新手 不太会用
能详细一些么 ?具体的log中函数的用法 非常感谢 展开
我新手 不太会用
能详细一些么 ?具体的log中函数的用法 非常感谢 展开
3个回答
展开全部
当然他是用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.
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.
展开全部
一般用于debug,可以用tool里的 ddms查看。。
里面函数一般是2个参数,前面的是标签,后面的为 提示 信息
比如 :
Log.d("Alarm","Set Error!");
里面函数一般是2个参数,前面的是标签,后面的为 提示 信息
比如 :
Log.d("Alarm","Set Error!");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Android的帮助文件里写得很全的
Log.d("Alarm","Set Error!");
Log.i("Alarm","Set Error!");
d,i表示log类型,alram指类别(可以用来filter),最后一个就是打印的真正内容了
6884330 Android技术群,可以大家讨论
Log.d("Alarm","Set Error!");
Log.i("Alarm","Set Error!");
d,i表示log类型,alram指类别(可以用来filter),最后一个就是打印的真正内容了
6884330 Android技术群,可以大家讨论
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询