要實(shí)現(xiàn)在Android應(yīng)用中保存圖片到相冊(cè)的功能,可以按照以下步驟進(jìn)行操作:
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
private void saveImageToGallery(Bitmap bitmap) {
String savedImageURL = MediaStore.Images.Media.insertImage(
getContentResolver(),
bitmap,
"title",
"description"
);
// 顯示保存成功的提示或處理其他邏輯
}
Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.image);
saveImageToGallery(bitmap);
通過(guò)以上步驟,就可以在Android應(yīng)用中實(shí)現(xiàn)保存圖片到相冊(cè)的功能。