android常用知识(累计)

1.Re-installation failed due to different application signatures
解决办法:adb uninstall 包路径
参考链接:http://www.linuxidc.com/Linux/2010-09/28321.htm


2.Error generating final archive
解决办法:进入到C:\Documents and Settings\Administrator\.android 删除:debug.keystore
参考链接:http://liaobingyun.blog.163.com/blog/static/1298121112010620143648/


3.需要建立目录时,先执行adb shell,进入到虚拟机后再mkdir

4.上传文件,可以执行类似这样的命令行
c:\>adb push  "C:\Documents and Settings\Administrator\ntuser.ini"   /sdcard/
或者可以通过eclipse中的DDMS插件去上传具体看http://winfredng.iteye.com/blog/554333


5.Service中,onStartCommand方法在android2.0以后才会有,在2.0前只有onStart


6.ERROR: the user data image is used by another emulator. aborting 的问题
进入你avd目录下:
如:C:\Documents and Settings\Administrator\.android\avd\android2.3.avd
删除以lock结尾的文件夹
参考链接:http://www.cnblogs.com/yyangblog/archive/2011/01/07/1929696.html

7.Service 和 Activity 都可以启动intent 发送数据 ,同时也可以注册(通过IntentFilter注册,可配置注册或者编码注册)BroadcastReceiver接收数据。service如果需要在底层运行,需要到AndroidManifest.xml中配置android:process=":remote"

8.google地图api密钥申请:http://code.google.com/intl/zh-CN/android/maps-api-signup.html

你可能感兴趣的:(C++,c,linux,android,Blog)