时间:2021-05-21
本文实现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); }}感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实现android系统照相机的调用来拍照项目的布局相当简单,只有一个Button:首先打开packages\apps\Camera文件夹下面的清单文件,找到
华为手机开启照相机笑脸抓拍功能后,当检测到笑脸的时候,就会自动拍照。华为手机相机笑脸抓拍开启方法点击照相机图标进行设置。进入照相机界面,点击右上角的设置图标。进
简介相机模块库,自定义相机,通过简单的调用即可实现拍照、图片裁剪、录像及录像抓拍功能;实现图片压缩,减少图片体积;自定义相机可避免使用系统相机导致的照片或视频体
1.若想在屏幕锁定情况下快速使用照相机功能,那只需连按两次手机的Home键,随后,在滑动解锁条旁边会出现照相机图标,点击该图标,便可实现照相机功能。 2.
本文实例讲述了Android编程实现拍照功能的2种方法。分享给大家供大家参考,具体如下:Android系统的照相功能,已实现2种方法,可供大家参考:1.调用系统