`
king_tt
  • 浏览: 2234679 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

解决Android拍照保存在系统相册不显示的问题

阅读更多

可能大家都知道我们保存相册到Android手机的时候,然后去打开系统图库找不到我们想要的那张图片,那是因为我们插入的图片还没有更新的缘故,先讲解下插入系统图库的方法吧,很简单,一句代码就能实现

 

MediaStore.Images.Media.insertImage(getContentResolver(), mBitmap, "", "");

通过上面的那句代码就能插入到系统图库,这时候有一个问题,就是我们不能指定插入照片的名字,而是系统给了我们一个当前时间的毫秒数为名字,有一个问题郁闷了很久,我还是先把insertImage的源码贴出来吧

 

 /**
             * Insert an image and create a thumbnail for it.
             *
             * @param cr The content resolver to use
             * @param source The stream to use for the image
             * @param title The name of the image
             * @param description The description of the image
             * @return The URL to the newly created image, or <code>null</code> if the image failed to be stored
             *              for any reason.
             */
            public static final String insertImage(ContentResolver cr, Bitmap source,
                                                   String title, String description) {
                ContentValues values = new ContentValues();
                values.put(Images.Media.TITLE, title);
                values.put(Images.Media.DESCRIPTION, description);
                values.put(Images.Media.MIME_TYPE, "image/jpeg");

                Uri url = null;
                String stringUrl = null;    /* value to be returned */

                try {
                    url = cr.insert(EXTERNAL_CONTENT_URI, values);

                    if (source != null) {
                        OutputStream imageOut = cr.openOutputStream(url);
                        try {
                            source.compress(Bitmap.CompressFormat.JPEG, 50, imageOut);
                        } finally {
                            imageOut.close();
                        }

                        long id = ContentUris.parseId(url);
                        // Wait until MINI_KIND thumbnail is generated.
                        Bitmap miniThumb = Images.Thumbnails.getThumbnail(cr, id,
                                Images.Thumbnails.MINI_KIND, null);
                        // This is for backward compatibility.
                        Bitmap microThumb = StoreThumbnail(cr, miniThumb, id, 50F, 50F,
                                Images.Thumbnails.MICRO_KIND);
                    } else {
                        Log.e(TAG, "Failed to create thumbnail, removing original");
                        cr.delete(url, null, null);
                        url = null;
                    }
                } catch (Exception e) {
                    Log.e(TAG, "Failed to insert image", e);
                    if (url != null) {
                        cr.delete(url, null, null);
                        url = null;
                    }
                }

                if (url != null) {
                    stringUrl = url.toString();
                }

                return stringUrl;
            }

上面方法里面有一个title,我刚以为是可以设置图片的名字,设置一下,原来不是,郁闷,哪位高手知道title这个字段是干嘛的,告诉下小弟,不胜感激!

当然Android还提供了一个插入系统相册的方法,可以指定保存图片的名字,我把源码贴出来吧

 

   /**
             * Insert an image and create a thumbnail for it.
             *
             * @param cr The content resolver to use
             * @param imagePath The path to the image to insert
             * @param name The name of the image
             * @param description The description of the image
             * @return The URL to the newly created image
             * @throws FileNotFoundException
             */
            public static final String insertImage(ContentResolver cr, String imagePath,
                    String name, String description) throws FileNotFoundException {
                // Check if file exists with a FileInputStream
                FileInputStream stream = new FileInputStream(imagePath);
                try {
                    Bitmap bm = BitmapFactory.decodeFile(imagePath);
                    String ret = insertImage(cr, bm, name, description);
                    bm.recycle();
                    return ret;
                } finally {
                    try {
                        stream.close();
                    } catch (IOException e) {
                    }
                }
            }

啊啊,贴完源码我才发现,这个方法调用了第一个方法,这个name就是上面方法的title,晕死,这下更加郁闷了,反正我设置title无效果,求高手为小弟解答,先不管了,我们继续往下说

上面那段代码插入到系统相册之后还需要发条广播

 

sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://"+ Environment.getExternalStorageDirectory())));  

上面那条广播是扫描整个sd卡的广播,如果你sd卡里面东西很多会扫描很久,在扫描当中我们是不能访问sd卡,所以这样子用户体现很不好,用过微信的朋友都知道,微信保存图片到系统相册并没有扫描整个SD卡,所以我们用到下面的方法

 

Intent intent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);   
 Uri uri = Uri.fromFile(new File("/sdcard/image.jpg"));   
 intent.setData(uri);   
 mContext.sendBroadcast(intent);  

或者用MediaScannerConnection

 

final MediaScannerConnection msc = new MediaScannerConnection(mContext, new MediaScannerConnectionClient() {   
  public void onMediaScannerConnected() {   
   msc.scanFile("/sdcard/image.jpg", "image/jpeg");   
  }   
  public void onScanCompleted(String path, Uri uri) {   
   Log.v(TAG, "scan completed");   
   msc.disconnect();   
  }   
 });   

也行你会问我,怎么获取到我们刚刚插入的图片的路径?呵呵,这个自有方法获取,insertImage(ContentResolver cr, Bitmap source,String title, String description),这个方法给我们返回的就是插入图片的Uri,我们根据这个Uri就能获取到图片的绝对路径

 

private  String getFilePathByContentResolver(Context context, Uri uri) {
		if (null == uri) {
			return null;
		}
        Cursor c = context.getContentResolver().query(uri, null, null, null, null);
        String filePath  = null;
        if (null == c) {
            throw new IllegalArgumentException(
                    "Query on " + uri + " returns null result.");
        }
        try {
            if ((c.getCount() != 1) || !c.moveToFirst()) {
            } else {
            	filePath = c.getString(
            			c.getColumnIndexOrThrow(MediaColumns.DATA));
            }
        } finally {
            c.close();
        }
        return filePath;
    }

根据上面的那个方法获取到的就是图片的绝对路径,这样子我们就不用发送扫描整个SD卡的广播了,呵呵,写到这里就算是写完了,写的很乱,希望大家将就的看下,希望对你有帮助!





 

分享到:
评论

相关推荐

    Android拍照保存在系统相册不显示的问题解决方法

    可能大家都知道我们保存相册到Android手机的时候,然后去打开系统图库找不到我们想要的那张图片,那是因为我们插入的图片还没有更新的缘故,先讲解下插入系统图库的方法吧,很简单,一句代码就能实现 代码如下: ...

    适配AndroidQ调用系统相机拍照后保存到相册并显示在界面上

    最近一直抽空在做仿微信朋友圈的功能,在点击加号选择选择拍摄进入相机拍照并将图片显示出来,因为版本迭代(Android11马上也就出来了),所以需要进行版本适配,所以在这里进行记录一下,方便以后查看和小伙伴们...

    Android调用系统相机、相册实现拍照、图片多选Demo移动开发

    在Android应用开发中,调用系统相机和相册是常见的需求,这通常涉及到用户与设备媒体库的交互。本文将详细讲解如何不依赖第三方库,仅使用Android原生API实现拍照和图片多选功能。 首先,调用系统相机拍摄照片。在...

    Android:实现手机拍照并保存照片

    在Android平台上,实现手机拍照并保存照片涉及到一系列的步骤和技术,包括权限管理、启动相机服务、处理相机回调、保存图片到SD卡等。下面将详细解释这些知识点。 首先,我们需要在`AndroidManifest.xml`文件中添加...

    android 拍照保存取消预览相册退出等功能

    本教程将基于提供的"android 拍照保存取消预览相册退出等功能"源码,详细介绍如何实现这一系列功能。 首先,我们需要在AndroidManifest.xml文件中添加相机权限: ```xml &lt;uses-permission android:name="android....

    android studio 保存图片到本地相册

    在Android开发中,将网络上的图片保存到用户的本地相册是一项常见的需求。Android Studio作为官方推荐的集成开发环境,提供了方便的工具和方法来实现这一功能。本教程将详细讲解如何利用Android Studio将图片从网络...

    Android11 适配,拍照问题

    Android11 适配,拍照问题。兼容Android11 targetSDk 31。有拍照功能和从相册选择图片,获取图片路径,保存图片。关联文章https://blog.csdn.net/u013778491/article/details/125638960

    Android 自定义拍照实例(解决竖拍照片横向问题)

    本教程将深入探讨如何解决Android拍照时出现的竖拍照片横向显示的问题。这个问题通常出现在使用SurfaceView来显示相机预览,并通过Camera类进行拍照操作时。 首先,我们需要了解Android中的Camera类。Camera类是...

    Android 拍照更新媒体库,相册选取图片显示

    在Android平台上,拍照并更新媒体库以便用户能在相册中查看新拍摄的图片是一个常见的功能。这个过程涉及多个步骤,包括请求相机权限、启动相机应用、处理返回的图像数据、保存图片到设备以及通知媒体库更新。下面...

    Android 系统相机拍照后相片无法在相册中显示解决办法

    在Android系统中,用户经常遇到一个问题,即使用系统相机拍照后,照片无法在相册中正常显示。这个问题可能由多种原因引起,包括权限问题、存储路径问题、媒体扫描器未及时更新等。以下是一些详细的解决办法和相关...

    Android相机拍照(解决图片模糊)和相册选择。

    这篇文章将主要探讨如何在Android中实现相机拍照以及从相册选择图片,并解决拍照后返回的图片模糊以及显示为缩略图的问题。 一、相机拍照 1. 请求相机权限:在Android 6.0(API级别23)及以上版本,需要在运行时...

    android拍照剪切显示到imageView中

    在Android应用开发中,"android拍照剪切显示到imageView中"是一个常见的需求,涉及到相机权限、图片处理和UI展示等多个方面。以下是对这个主题的详细解释: 1. **相机权限**: 在Android 6.0(API级别23)及以上...

    Android webView拍照与展示相册图片

    本文将详细讲解如何在Android的WebView中实现拍照和展示相册图片的功能。 首先,我们需要理解WebView的基本用法。WebView是Android SDK中的一个类,它通过加载HTML、CSS和JavaScript代码来显示网页内容。为了加载...

    android 拍照+从手机相册选择返回图片到imagview

    通过以上步骤,我们可以实现Android应用中从相机拍照和从相册选择图片的功能,并将选中的图片显示在`ImageView`上。这在很多应用中都是基础且常用的功能,因此理解和掌握这部分知识对于Android开发者来说至关重要。

    Android拍照与相册图片裁剪

    在Android应用开发中,"Android拍照与相册图片裁剪"是一个常见的功能需求,涉及到用户交互和权限管理等多个方面。以下将详细阐述实现这一功能的关键知识点: 1. **请求相机权限**:在Android 6.0(API级别23)及...

    android studio 调用相机拍照,选择相册照片

    在Android开发中,调用相机拍照和选择相册照片是常见的功能,这涉及到Android系统级别的交互和权限管理。本文将详细讲解如何在Android Studio中实现这两个功能,并将获取的图片进行存储。 首先,我们需要在...

    android Webview(H5)中调用相册和拍照

    本文将详细讲解如何在Android的Webview中调用相册和拍照功能,以实现H5与原生Android应用的深度集成。 首先,我们需要了解`WebView`的基本用法。`WebView`是Android SDK中的一个类,它可以加载URL,展示HTML页面,...

    Android拍照及相册多选

    本示例"Android拍照及相册多选"旨在教你如何在Android应用中实现这两种功能,使得用户能够轻松地拍摄照片以及从手机相册中多选图片。下面将详细解释相关知识点。 1. **相机Intent**: Android提供了`Intent`机制来...

    android 调用相机和相册

    为了解决这个问题,我们需要采用另一种策略,即手动处理拍照后的图片存储和获取。 下面是兼容小米设备的调用相机代码: ```java Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); if ...

Global site tag (gtag.js) - Google Analytics