这几天看《疯狂java讲义》觉得不难理解,但是看得比较慢,郁闷。。。
今天开始看mars的视频,其实以前也看过一点,今天又从新开始。
遇到的问题:
1,发现avd都默认创建在c盘下,严重影响C盘,果断想办法把它移走。
方法:在环境变量重添加ANDROID_SDK_HOME
值为自己想把它放在什么地方就写什么文件路径。
2,出现错误
[2012-04-14 23:53:35 - Activity01] Re-installation failed due to different application signatures.
[2012-04-14 23:53:35 - Activity01] You must perform a full uninstall of the application. WARNING: This will remove the application data!
[2012-04-14 23:53:35 - Activity01] Please execute 'adb uninstall mars.activity' in a shell.
[2012-04-14 23:53:35 - Activity01] Launch canceled!
在cmd下执行'adb uninstall mars.activity'把 已经install的apk 卸载就可以了。
过程中发现adb不是系统命令。原因是以前的sdk版本中没有platform-toos,所以没有将platform-toos加到path环境变量中,在path中添加D:/android-sdk/platform-tools;就ok!