android - 安卓實(shí)現(xiàn)類似QQ剛換聊天背景的功能
問(wèn)題描述
自己實(shí)現(xiàn)了一下,但對(duì)于一些手機(jī)一設(shè)置背景就出現(xiàn)閃退不知道為什么,大體思路就是獲得用戶選擇的uri,然后如果屏幕分辨率小于圖片的分辨率就對(duì)圖片進(jìn)行下處理,防止OOM。但現(xiàn)在不知道哪里還有問(wèn)題
啟動(dòng)系統(tǒng)的圖片選擇
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);intent.setType('image/*');CourseFragment.getInstannce().startActivityForResult(intent,1);
里邊有檢查權(quán)限,安卓6.0權(quán)限得經(jīng)用戶同意讀內(nèi)存,還有就是我把圖片以字符串的形式保存下來(lái)了,使得下次啟動(dòng)直接顯示保存的圖片(不知道有沒(méi)有更好的方法,感覺(jué)這個(gè)方法很不正規(guī))。
@Override public void onActivityResult(int requestCode, int resultCode, Intent data) {super.onActivityResult(requestCode, resultCode, data);if(requestCode==1&&resultCode==RESULT_OK&&data!=null) { Uri uri = data.getData(); int weight= CourseBackground.getHeight(); int height=CourseBackground.getWidth(); Bitmap photo=getSmallBitmap(getRealPathFromURI(uri),weight,height); if(photo==null) {OwnToast.Long('請(qǐng)檢查存儲(chǔ)權(quán)限是否開(kāi)啟');return; } BitmapDrawable bd=new BitmapDrawable(getResources(),photo); if(bd==null) {OwnToast.Long('請(qǐng)檢查存儲(chǔ)權(quán)限是否開(kāi)啟');return; } ByteArrayOutputStream stream = new ByteArrayOutputStream(); photo.compress(Bitmap.CompressFormat.JPEG, 60, stream); byte[] b = stream.toByteArray(); // 將圖片流以字符串形式存儲(chǔ)下來(lái) String tp = new String(Base64Encoder.encode(b)); InformationShared.setString('course_background', tp); CourseBackground.setBackground(bd);} }
根據(jù)URI去返回真實(shí)路徑,網(wǎng)上找的代碼,似乎這里有問(wèn)題,在錯(cuò)誤統(tǒng)計(jì)里看到這里的報(bào)錯(cuò)
private String getRealPathFromURI(Uri contentURI) {String result;Cursor cursor = getActivity().getContentResolver().query(contentURI, null, null, null, null);if (cursor == null) { // Source is Dropbox or other similar local file path result = contentURI.getPath();} else { cursor.moveToFirst(); int idx = cursor.getColumnIndex(MediaStore.Images.ImageColumns.DATA); result = cursor.getString(idx); cursor.close();}return result; }
1273 return result那一行
org.pointstone.cugapp.fragments.CourseFragment.getRealPathFromURI(CourseFragment.java:1273)
然后是得到壓縮的圖片函數(shù)
public Bitmap getSmallBitmap(String filepath, int reqWidth, int reqHeight) {// 第一次解析將inJustDecodeBounds設(shè)置為true,來(lái)獲取圖片大小final BitmapFactory.Options options = new BitmapFactory.Options();options.inJustDecodeBounds = true;BitmapFactory.decodeFile(filepath,options);// 調(diào)用上面定義的方法計(jì)算inSampleSize值options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);// 使用獲取到的inSampleSize值再次解析圖片options.inJustDecodeBounds = false;return BitmapFactory.decodeFile(filepath, options); } private String getRealPathFromURI(Uri contentURI) {String result;Cursor cursor = getActivity().getContentResolver().query(contentURI, null, null, null, null);if (cursor == null) { // Source is Dropbox or other similar local file path result = contentURI.getPath();} else { cursor.moveToFirst(); int idx = cursor.getColumnIndex(MediaStore.Images.ImageColumns.DATA); result = cursor.getString(idx); cursor.close();}return result; }
不知道哪里有問(wèn)題,請(qǐng)大家?guī)兔纯矗惺裁唇ㄗh告訴我,就是一個(gè)LinearLayout然后調(diào)用setBackground設(shè)置背景圖。感覺(jué)QQ的那個(gè)很棒,如果有相關(guān)的開(kāi)源項(xiàng)目感謝推薦。
問(wèn)題解答
回答1:getRealPathFromURI這個(gè)方法,在Android4.4有變化,所以你需要是用新的.你可以看一下這篇博客 http://blog.csdn.net/dj0379/a...
回答2:把圖片以字符串的形式保存下來(lái)的方法確實(shí)很獨(dú)出心裁啊。我的想法是在選擇圖片之后,將圖片處理后復(fù)制一份到App所在的目錄,然后設(shè)置其為背景,下次啟動(dòng)直接加載圖片,免得此圖片在圖庫(kù)中被刪除。
相關(guān)文章:
1. php - 請(qǐng)問(wèn)大批量數(shù)據(jù)處理,如何分割?2. javascript - vue過(guò)渡效果 css過(guò)渡 類名的先后順序3. MySQL主鍵沖突時(shí)的更新操作和替換操作在功能上有什么差別(如圖)4. 數(shù)據(jù)庫(kù) - Mysql的存儲(chǔ)過(guò)程真的是個(gè)坑!求助下面的存儲(chǔ)過(guò)程哪里錯(cuò)啦,實(shí)在是找不到哪里的問(wèn)題了。5. html5和Flash對(duì)抗是什么情況?6. css右浮動(dòng)字的順序顛倒了7. ios - 類似微博首頁(yè),一張圖的時(shí)候是如何確定圖大小的?8. javascript - 我是做web前端的,公司最近有一個(gè)項(xiàng)目關(guān)于數(shù)據(jù)統(tǒng)計(jì)的!9. javascript - 如何使用loadash對(duì)[object,object,object]形式的數(shù)組進(jìn)行比較10. javascript - vuejs+elementui 購(gòu)物車價(jià)格計(jì)算,點(diǎn)擊加減號(hào)修改數(shù)量總價(jià)都不會(huì)改變,但是計(jì)算執(zhí)行了
