1.google
2.application->application framework->libraries(调用关系)
3.strings.xml 是全局字符串的配置文件
4.ADT(Android Development Tools):其中DDMS是测试插件
5.Android DDMS 中的日志输出
Log.v(String tag, String msg):输出冗余消息
Log.d(String tag, String msg) :输出调试消息
Log.i(String tag, String msg): 输出普通消息
Log.w(String tag, String msg) :输出警告消息
Log.e(String tag, String msg): 输出错误消息