1同一个wifi下面联调,不用usb链接
http://stormzhang.com/android/2014/08/27/adb-over-wifi/
2.安装Android stdio的sdk文件fetch失败,
http://jingyan.baidu.com/article/2c8c281df3dcd50009252a56.html
用notepad打开C:/WINDOWS/system32/drivers/etc中的hosts文件
在最后一行添加74.125.237.1 dl-ssl.google.com
如果仍然链接失败,就打开SDK Manager.exe,选中tool栏,点Android SDK Manager ,在下面Force https://...sources to be fetched using http://... 打上勾就行了,这个主要是把受保护的协议 https 转成普通http
3图片处理 BitmapFactory.Options options =newBitmapFactory.Options();
options.inJustDecodeBounds while decoding avoids memory allocation,解析时不分配内存
options.inSampleSize 是压缩率,(1,2,3,4)值越大压缩越大
DiskLruCache类是本地缓存图片类库
4下载网络上面xml并解析,然后加载图片
http://www.cnblogs.com/gzggyy/archive/2013/05/18/3085559.html
5.Service只有一个实例在后台运行,每次startService会调用onStart,bindService只调用一次onStart。onCreate只有一次。
startService会一直运行,不管调用的activity什么状态,直到被调用stopService,或自身的stopSelf方法。而bindService会在调用的activity销毁时自动销毁。