Android 调用系统照相机拍照和录像
更新时间:2016年09月08日 16:18:09 作者:wuyudong
本文主要介绍Android 调用系统照相机拍照和录像的资料,这里整理了详细的代码,有需要的小伙伴可以参考下
本文实现android系统照相机的调用来拍照
项目的布局相当简单,只有一个Button:
<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:onClick="click" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:text="调用系统相机拍照" /> </RelativeLayout>
首先打开packages\apps\Camera文件夹下面的清单文件,找到下面的代码:
<activity android:name="com.android.camera.Camera" android:configChanges="orientation|keyboardHidden" android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" android:screenOrientation="landscape" android:clearTaskOnLaunch="true" android:taskAffinity="android.task.camera"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> <intent-filter> <action android:name="android.media.action.IMAGE_CAPTURE" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> <intent-filter> <action android:name="android.media.action.STILL_IMAGE_CAMERA" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> </activity>
相关代码如下:
public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } public void click(View view) { /* * <intent-filter> <action * android:name="android.media.action.IMAGE_CAPTURE" /> <category * android:name="android.intent.category.DEFAULT" /> </intent-filter> */ // 激活系统的照相机进行拍照 Intent intent = new Intent(); intent.setAction("android.media.action.IMAGE_CAPTURE"); intent.addCategory("android.intent.category.DEFAULT"); //保存照片到指定的路径 File file = new File("/sdcard/image.jpg"); Uri uri = Uri.fromFile(file); intent.putExtra(MediaStore.EXTRA_OUTPUT, uri); startActivity(intent); } }
实现激活录像功能的相关代码也很简单:
public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } public void click(View view) { /* * <intent-filter> <action * android:name="android.media.action.VIDEO_CAPTURE" /> <category * android:name="android.intent.category.DEFAULT" /> </intent-filter> */ // 激活系统的照相机进行录像 Intent intent = new Intent(); intent.setAction("android.media.action.VIDEO_CAPTURE"); intent.addCategory("android.intent.category.DEFAULT"); // 保存录像到指定的路径 File file = new File("/sdcard/video.3pg"); Uri uri = Uri.fromFile(file); intent.putExtra(MediaStore.EXTRA_OUTPUT, uri); startActivityForResult(intent, 0); } @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { Toast.makeText(this, "调用照相机完毕", 0).show(); super.onActivityResult(requestCode, resultCode, data); } }
出处:http://www.cnblogs.com/wuyudong/
您可能感兴趣的文章:
- android 7自定义相机预览及拍照功能
- Android调用系统照相机拍照与摄像的方法
- Android如何调用系统相机拍照
- Android编程实现调用相册、相机及拍照后直接裁剪的方法
- Android自定义相机实现定时拍照功能
- Android自定义组件获取本地图片和相机拍照图片
- Android使用系统自带的相机实现一键拍照功能
- Android 系统相机拍照后相片无法在相册中显示解决办法
- Android 实现调用系统照相机拍照和录像的功能
- Android实现从本地图库/相机拍照后裁剪图片并设置头像
- Android自定义照相机倒计时拍照
- Android启动相机拍照并返回图片
- Android打开系统相机并拍照的2种显示方法
相关文章
Android中设置RadioButton在文字右边的方法实例
这篇文章主要介绍了Android中设置RadioButton在文字右边的方法实例,本文直接给出XML配置实现代码,需要的朋友可以参考下2015-04-04
最新评论