Android打开系统相机并拍照的2种显示方法
程序员文章站
2022-06-30 11:32:36
本文实例为大家分享了android打开系统相机并拍照的具体实现代码,供大家参考,具体内容如下
目标效果:
第二张为点击第一个按钮拍照后显示的,比较模糊,第三章为点击...
本文实例为大家分享了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.运行就可以显示目标效果了。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。