2012-03-30 67 views

回答

0

您應該使用MediaStore能夠從庫中獲取圖片: http://developer.android.com/reference/android/provider/MediaStore.Images.Media.html

編輯:您可以使用此獲得圖像:

Intent intent = new Intent(Intent.ACTION_GET_CONTENT); 
intent.setType("image/*"); 
startActivityForResult(intent, 1); 

,你會得到與此位圖您的onActivityResult

Bitmap bitmap = MediaStore.Images.Media.getBitmap(getActivity() 
        .getContentResolver(), data.getData()); 
+0

我不想從圖庫中獲取圖片我想從手機圖庫分享 – GTID 2012-03-30 15:27:42

+0

你也可以通過這種方法獲得uri,所以你可以分享圖片並將uri作爲參數傳遞給你的共享方法......我想...... – skamlet 2012-03-30 15:33:33

相關問題