Android打开系统相机并拍照的2种显示方法

 更新时间:2019年05月27日 09:33:25   作者:Vivinia_Vivinia  
这篇文章主要介绍了Android打开系统相机并拍照的2种显示方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了Android打开系统相机并拍照的具体实现代码,供大家参考,具体内容如下

目标效果:

第二张为点击第一个按钮拍照后显示的,比较模糊,第三章为点击第二个按钮拍照后显示的,比较清楚。

1.activity_main.xml页面设置布局。

activity_main.xml页面:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 tools:context=".MainActivity" >
 
 <Button
  android:id="@+id/btnOpenCamera"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_marginTop="10dp"
  android:text="拍照立即显示" />
 <Button
  android:id="@+id/btnSavePhoto"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_marginTop="60dp"
  android:text="拍照存储后显示" />
 
 <ImageView
  android:id="@+id/ivShowPicture"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:layout_centerHorizontal="true"
  android:layout_marginTop="130dp" />
</RelativeLayout>

2.MainActivity.java页面打开相机并获取传递回来的数据,两种方式第一个比较模糊,适合小图,第二个清楚些。

MainActivity.java页面:

package com.example.camera;
 
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.net.URI;
 
import android.net.Uri;
import android.os.Bundle;
import android.os.Environment;
import android.provider.MediaStore;
import android.app.Activity;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.ImageView;
 
public class MainActivity extends Activity implements OnClickListener {
 
 private Button btnOpenCamera, btnSavePhoto;
 private ImageView ivShowPicture;
 private static int REQUEST_CAMERA_1 = 1;
 private static int REQUEST_CAMERA_2 = 2;
 private String mFilePath;
 
 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);
 
 // 初始化控件
 init();
 
 // 控件绑定点击事件
 bindClick();
 }
 
 // 初始化控件和变量
 private void init() {
 btnOpenCamera = (Button) findViewById(R.id.btnOpenCamera);
 btnSavePhoto = (Button) findViewById(R.id.btnSavePhoto);
 ivShowPicture = (ImageView) findViewById(R.id.ivShowPicture);
 mFilePath = Environment.getExternalStorageDirectory().getPath();// 获取SD卡路径
 mFilePath = mFilePath + "/" + "temp.png";// 指定路径
 }
 
 // 控件绑定点击事件
 private void bindClick() {
 btnOpenCamera.setOnClickListener(this);
 btnSavePhoto.setOnClickListener(this);
 }
 
 @Override
 public void onClick(View view) {
 switch (view.getId()) {
 case R.id.btnOpenCamera:
 // 拍照并显示图片
 openCamera_1();
 break;
 case R.id.btnSavePhoto:
 // 拍照后存储并显示图片
 openCamera_2();
 break;
 default:
 break;
 }
 }
 
 // 拍照并显示图片
 private void openCamera_1() {
 Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);// 启动系统相机
 startActivityForResult(intent, REQUEST_CAMERA_1);
 }
 
 // 拍照后存储并显示图片
 private void openCamera_2() {
 Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);// 启动系统相机
 Uri photoUri = Uri.fromFile(new File(mFilePath)); // 传递路径
 intent.putExtra(MediaStore.EXTRA_OUTPUT, photoUri);// 更改系统默认存储路径
 startActivityForResult(intent, REQUEST_CAMERA_2);
 }
 
 @Override
 protected void onActivityResult(int requestCode, int resultCode, Intent data) {
 super.onActivityResult(requestCode, resultCode, data);
 if (resultCode == RESULT_OK) { // 如果返回数据
 if (requestCode == REQUEST_CAMERA_1) { // 判断请求码是否为REQUEST_CAMERA,如果是代表是这个页面传过去的,需要进行获取
 Bundle bundle = data.getExtras(); // 从data中取出传递回来缩略图的信息,图片质量差,适合传递小图片
 Bitmap bitmap = (Bitmap) bundle.get("data"); // 将data中的信息流解析为Bitmap类型
 ivShowPicture.setImageBitmap(bitmap);// 显示图片
 } else if (requestCode == REQUEST_CAMERA_2) {
 FileInputStream fis = null;
 try {
  fis = new FileInputStream(mFilePath); // 根据路径获取数据
  Bitmap bitmap = BitmapFactory.decodeStream(fis);
  ivShowPicture.setImageBitmap(bitmap);// 显示图片
 } catch (FileNotFoundException e) {
  e.printStackTrace();
 } finally {
  try {
  fis.close();// 关闭流
  } catch (IOException e) {
  e.printStackTrace();
  }
 }
 }
 }
 }
}

3.因为打开的是系统相机,所以不需要添加打开相机的权限,如果想要在别的应用里选择打开系统相机时也出现你的应用,需要在AndroidManifest.xml页面进行设置。

AndroidManifest.xml页面:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 package="com.example.camera"
 android:versionCode="1"
 android:versionName="1.0" >
 
 <uses-sdk
  android:minSdkVersion="17"
  android:targetSdkVersion="19" />
 
 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
 
 <application
  android:allowBackup="true"
  android:icon="@drawable/ic_launcher"
  android:label="@string/app_name"
  android:theme="@style/AppTheme" >
  <activity
   android:name="com.example.camera.MainActivity"
   android:label="@string/app_name" >
   <intent-filter>
    <action android:name="android.intent.action.MAIN" />
 
    <category android:name="android.intent.category.LAUNCHER" />
   </intent-filter>
   <!-- 注册相机功能,在别的程序Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);进行启动相机时也会选择是否启动该应用 -->
   <intent-filter>
    <action android:name="android.media.action.IMAGE_CAPTURE" />
 
    <category android:name="android.intent.category.DEFAULT" />
   </intent-filter>
  </activity>
 </application>
 
</manifest>

4.运行就可以显示目标效果了。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • Android 完全退出应用程序的解决方法

    Android 完全退出应用程序的解决方法

    本篇文章小编为大家介绍,Android 完全退出应用程序的解决方法。需要的朋友参考下
    2013-04-04
  • Kotlin标准库函数使用分析及介绍

    Kotlin标准库函数使用分析及介绍

    Kotlin提供了一个系统库,是Java库的增强。其中有很多函数在适配了Java的类型和方法同时使用Kotlin的语法。其中一些底层的函数 是使用比较广泛的
    2022-09-09
  • Android开发实现根据字母快速定位侧边栏

    Android开发实现根据字母快速定位侧边栏

    这篇文章主要为大家详细介绍了Android开发实现根据字母快速定位侧边栏,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2021-09-09
  • Android RecylerView入门教程

    Android RecylerView入门教程

    这篇文章主要介绍了Android RecylerView入门教程的相关资料,很适合刚入门的新手学习,非常不错,具有参考借鉴价值,需要的朋友可以参考下
    2016-07-07
  • Android DrawerLayout布局与NavigationView导航菜单应用

    Android DrawerLayout布局与NavigationView导航菜单应用

    这篇文章主要介绍了Android DrawerLayout抽屉布局与NavigationView导航菜单应用,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习吧
    2023-01-01
  • Android TabWidget切换卡的实现应用

    Android TabWidget切换卡的实现应用

    本篇文章小编为大家介绍,Android TabWidget切换卡的实现应用。需要的朋友参考下
    2013-04-04
  • Android开发实现自定义水平滚动的容器示例

    Android开发实现自定义水平滚动的容器示例

    这篇文章主要介绍了Android开发实现自定义水平滚动的容器,涉及Android滚动容器的事件响应、属性运算与修改相关操作技巧,需要的朋友可以参考下
    2017-10-10
  • app 请求服务器json数据实例代码

    app 请求服务器json数据实例代码

    下面小编就为大家分享一篇app 请求服务器json数据实例代码,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2018-01-01
  • Android imageVIew实现镜像旋转的方法

    Android imageVIew实现镜像旋转的方法

    在Android应用开发中,有时候我们需要对ImageView中的图片进行镜像旋转,以展示不同的效果,本文将介绍如何使用代码实现ImageView的镜像旋转效果,这篇文章主要介绍了Android imageVIew如何做镜像旋转,需要的朋友可以参考下
    2024-06-06
  • 腾讯、百度、华为、搜狗和滴滴Android面试题汇总

    腾讯、百度、华为、搜狗和滴滴Android面试题汇总

    这篇文章主要汇总了腾讯、百度、华为、搜狗和滴滴Android面试题,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-11-11

最新评论