回答
1)從SD卡讀取你的形象:
File image = new File(Environment.getExternalStorageDirectory().getAbsolutePath() + File.separator + "path_to_your_file");
if(image.exists())
Bitmap bmp = BitmapFactory.decodeFile(image.getAbsolutePath());
2)設置成你的合適ImageView
ImageView imgProfile = (ImageView) findViewById(R.id.your_image_view_id);
imgProfile.setImageBitmap(bmp);
難道是給我的另一個問題這種方法重疊這是在列表視圖 –
請發表您的適配器代碼和所有圖像您如何設置這些圖標 – Droidman
公共NavDrawerItem(字符串名稱,INT圖標,布爾isCounterVisible, \t \t \t串計數){ \t \t this.title =標題; \t \t this.icon =圖標; \t \t this.isCounterVisible = isCounterVisible; \t \t this.count =計數; \t} \t public String getTitle(){ \t \t return this.title; \t} \t公衆詮釋調用getIcon(){ \t \t返回this.icon; \t} –
充分利用圖片sdcard
Bitmap bmp = BitmapFactory.decodeFile(pathName);
ImageView img;
img.setImageBitmap(bmp);
//add permission AndroidManifest
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
- 1. 如何添加SD卡圖像到coverflow?
- 2. 使用通用圖像加載器加載圖像使用圖像路徑
- 3. 將圖像疊加在配置文件圖片FB上或將圖像添加到圖片
- 4. 圖像在phpmyadmin使用圖像路徑
- 5. 如何:在SD卡中存儲圖像,存儲和獲取配置文件的共享首選圖像路徑
- 6. 使用Glide從SD卡加載圖像
- 7. 使用php圖像將圖像轉換成卡通圖片magick
- 8. 如何從存儲在SD卡上的圖像獲取圖像路徑
- 9. 將圖像添加到標籤而不使用文件路徑
- 10. 如何獲取圖像視圖內圖像的圖像路徑?
- 11. 如何將從SD卡加載的圖像縮放到圖像視圖?
- 12. Android:如何使用simpleadapter將SD卡中的圖像文件添加到HashMap中?
- 13. 通用圖像加載器顯示來自SD卡的圖像
- 14. 用FreeImage將圖像添加到圖像
- 15. 如何使用Swift 3將圖像應用於圖像?
- 16. 如何添加路徑到圖像
- 17. 如何引用ImageAdapter的SD卡圖像
- 18. 將SD卡圖像設置爲ImageView?
- 19. 如何使圖像導航出圖像並在圖像內添加文本?
- 20. 將圖像添加到Android的SD卡文件夾
- 21. 將圖像添加到文件夾中的SD卡
- 22. 意圖畫廊的圖像SD卡路徑
- 23. 使用ACTION_SEND在SD卡上共享圖像。圖像刪除!
- 24. 如何在應用程序配置文件中設置圖像文件路徑?
- 25. 圖像從SD卡到圖庫視圖
- 26. 從SD卡獲取圖像並將其設置爲壁紙
- 27. 如何捕獲圖像,並將其保存在SD卡
- 28. 如何使用Android將圖像置於圖像中?
- 29. 將圖像ID設置爲使用拖放添加的圖像
- 30. 如何將URI路徑添加到位圖圖像?
你必須作出click事件上的個人檔案相片從畫廊的動作,然後設置圖像,在時間,你必須存儲在使用Base64串sharedpreferences形象,現在你必須檢查圖像中sharedpreferences avaible然後告訴其他明智集從畫廊 –