首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

Maven开发Android指南 五 调试

2012-12-24 
Maven开发Android指南 5 调试logcat是Android中一个命令行工具,可以用于得到程序的log信息。The Android lo

Maven开发Android指南 5 调试

logcat是Android中一个命令行工具,可以用于得到程序的log信息。

The Android logging system provides a mechanism for collecting andviewing system debug output. Logs from various applications and portions of thesystem are collected in a series of circular buffers, which then can be viewedand filtered by the logcat command. You can use logcat from an ADB shell toview the log messages

Android ships with a debugging tool called the Dalvik Debug MonitorServer (DDMS), which provides port-forwarding services, screen capture on thedevice, thread and heap information on the device, logcat, process, and radiostate information, incoming call and SMS spoofing, location data spoofing, andmore

?

参考:

http://code.google.com/p/maven-android-plugin/wiki/Debug

http://baike.baidu.com/view/4504801.htm

http://baike.baidu.com/view/2688850.htm

http://developer.android.com/tools/help/logcat.html

http://developer.android.com/tools/debugging/ddms.html

热点排行