設置頭像:html
Drawable drawable = new BitmapDrawable(dBitmap); //Drawable drawable = Drawable.createFromPath(path); avator.setBackgroundDrawable(drawable);
String filepath = "/sdcard/paiyipai.jpg"; Bitmap bm = BitmapFactory.decodeFile(filepath); //BtimapDrawable是Drawable的子類,最終直接使用bd對象便可。 BitmapDrawable bd=new BitmapDrawable(bm); ImageView.setBackgroundDrawable(bd);
參考:java
七牛雲存儲android客戶端及java服務端代碼編寫.http://www.mamicode.com/info-detail-551140.htmlandroid
Android客戶端實現七牛雲存儲文件上傳.http://blog.csdn.net/lixiaodaoaaa/article/details/42713563七牛雲存儲
android開發之上傳圖片到七牛雲存儲服務器.http://www.2cto.com/kf/201503/385879.html服務器
七牛Android上傳token的生成和上傳.http://download.csdn.net/detail/hehuoren1/8553977spa
Android圖片上傳(頭像裁切+原圖原樣).http://www.2cto.com/kf/201501/371520.html.net
Android上傳圖片裁剪功能.http://www.open-open.com/lib/view/open1352201409844.htmlcode