Android

关注公众号 jb51net

关闭
首页 > 软件编程 > Android > Android使用相机

Android使用相机实现拍照存储及展示功能详解

作者:知奕奕

这篇文章主要介绍了Android使用相机实现拍照存储及展示功能,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习吧

无图片处理款

配置存储路径映射

新建文件:res/xml/files.xml

使用 paths 标签映射一个存储路径,而 external-path 表示存储路径的根路径位于外部存储器内

name 自定义名称,可以随便写;

path 存储的文件夹,写一个小圆点表示直接使用根目录文件夹

<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
    <external-path
        name="myphotos"
        path="." />
</paths>

配置 fileprovider

开启 androidmanifest.xml 文件,在 application 标签下添加一个 provider 标签

provider 标签的几个主要属性介绍:

meta-data 标签填入我们存储文件的映射 xml,就是上一节我们编写的文件

<application
        ...>
        <activity
            android:name=".MainActivity"
            android:exported="true">
            ...
        </activity>
        <provider
            android:name="androidx.core.content.FileProvider"
            android:authorities="com.zhiyiyi.login.fileprovider"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/files" />
        </provider>
    </application>

布局文件

非常简单,一个 imageview+imagebutton 即可

注意这里的 imagebutton 使用了 android 官方自带的图标,挺实用的,大家可以多试试

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_margin="20dp"
    tools:context=".MainActivity">
    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <ImageView
            android:id="@+id/image"
            android:layout_width="200dp"
            android:layout_height="200dp" />
        <ImageButton
            android:id="@+id/imagebtn"
            android:layout_width="100dp"
            android:layout_height="60dp"
            android:src="@android:drawable/ic_menu_camera" />
    </LinearLayout>
</LinearLayout>

主代码文件

由于内容较为复杂,这里分层讲,最后贴出完整代码

首先全局定义三个延后初始化的变量

分别存储我们的图片 uri,以及两个组件

特别注意! photoUri 的类型是 Uri 而不是 URI,这俩玩意完全不一样,别看岔了!

class MainActivity : AppCompatActivity() {
    private lateinit var photoUri: Uri
    private lateinit var btn: ImageButton
    private lateinit var image: ImageView
    ...
}

之后就是按钮点击唤醒相机拍照,并存储相片展示到 imageview 的过程

具体过程请看详细注释

override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    setContentView(R.layout.activity_main)
    // 初始化两个组件
    btn = findViewById(R.id.imagebtn)
    image = findViewById(R.id.image)
    btn.setOnClickListener {
        // 新建一个文件,他的位置位于外存根目录下,且文件名为outputimage.jpg
        val file = File(getExternalFilesDir(null), "outputimage.jpg")
        // 为避免输出流错误,需要捕获错误
        try {
            file.createNewFile()
        } catch (e: IOException) {
            e.printStackTrace()
        }
        // 使用FileProvider.getUriForFile获取相片存储的URI
        // 参数一:上下文
        // 参数二:我们之前在androidmanifest中注册provider时自定义的authorities
        // 参数三:欲转换成uri路径的文件
        photoUri = FileProvider.getUriForFile(
            this@MainActivity,
            "com.zhiyiyi.login.fileprovider",
            file
        )
        // 使用隐式intent唤醒相机
        val intent = Intent(MediaStore.ACTION_IMAGE_CAPTURE)
        // 传入photouri,以保证我们的照片存储到指定位置
        intent.putExtra(MediaStore.EXTRA_OUTPUT, photoUri)
        // 老样子,不解释
        startActivityForResult(intent, 1)
    }
}

onActivityResult 部分

内容很简单,即检测响应值并解码图片文件->显示图片

override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
    super.onActivityResult(requestCode, resultCode, data)
    when (requestCode) {
        1 -> {
            if (resultCode == RESULT_OK) {
                try {
                    // 使用bitmap解码文件
                    val bitmap =
                        BitmapFactory.decodeStream(contentResolver.openInputStream(photoUri))
                    // 将图片展示在imageview上面
                    image.setImageBitmap(bitmap)
                } catch (e: FileNotFoundException) {
                    e.printStackTrace()
                }
            }
        }
    }
}

完整代码展示:

package com.zhiyiyi.login
import android.content.Intent
import android.graphics.BitmapFactory
import android.net.Uri
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.os.IBinder
import android.provider.MediaStore
import android.util.Log
import android.widget.ImageButton
import android.widget.ImageView
import androidx.core.content.FileProvider
import com.zhiyiyi.login.databinding.ActivityMainBinding
import java.io.File
import java.io.FileNotFoundException
import java.io.IOException
import java.net.URI
import kotlin.math.log
class MainActivity : AppCompatActivity() {
    private lateinit var photoUri: Uri
    private lateinit var btn: ImageButton
    private lateinit var image: ImageView
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
        btn = findViewById(R.id.imagebtn)
        image = findViewById(R.id.image)
        btn.setOnClickListener {
            Log.d("fuck", "tnnd就是拍不了照")
            val file = File(getExternalFilesDir(null), "outputimage.jpg")
            Log.d("fuck", file.absolutePath)
            try {
                file.createNewFile()
            } catch (e: IOException) {
                e.printStackTrace()
            }
            photoUri = FileProvider.getUriForFile(
                this@MainActivity,
                "com.zhiyiyi.login.fileprovider",
                file
            )
            val intent = Intent(MediaStore.ACTION_IMAGE_CAPTURE)
            intent.putExtra(MediaStore.EXTRA_OUTPUT, photoUri)
            startActivityForResult(intent, 1)
        }
    }
    override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
        super.onActivityResult(requestCode, resultCode, data)
        when (requestCode) {
            1 -> {
                if (resultCode == RESULT_OK) {
                    try {
                        val bitmap =
                            BitmapFactory.decodeStream(contentResolver.openInputStream(photoUri))
                        image.setImageBitmap(bitmap)
                    } catch (e: FileNotFoundException) {
                        e.printStackTrace()
                    }
                }
            }
        }
    }
}

本 demo 不负责权限申请,且根据作者真机调试,直接开启相机并不需要请求任何权限,故再次做忽略处理

下一节讲讲述如何缩放以及调节图片分辨率以达到最佳效果

到此这篇关于Android使用相机实现拍照存储及展示功能详解的文章就介绍到这了,更多相关Android使用相机内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文