码迷,mamicode.com
首页 > 移动开发 > 详细

android 开发之 - 调用系统闪光灯

时间:2014-09-24 12:45:26      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   color   io   ar   div   sp   art   

 

Android开发调用系统闪光灯。

添加权限:

<!-- 调用闪光灯权限 -->
    <uses-permission android:name="android.permission.FLASHLIGHT" />  

    <uses-permission android:name="android.permission.CAMERA"/>

    <uses-feature android:name="android.hardware.camera" />

    <uses-feature android:name="android.hardware.autofocus"/>

private Camera camera = null;
private Parameters parameters = null;

开启:

if (null == camera) {
                camera = Camera.open();
            }

            camera.startPreview();

            parameters = camera.getParameters();

            parameters.setFlashMode(Parameters.FLASH_MODE_TORCH);// 开启

            camera.setParameters(parameters);

关闭:

if (camera != null) {

                parameters = camera.getParameters();

                parameters.setFlashMode(Parameters.FLASH_MODE_OFF);// 关闭

                camera.setParameters(parameters);

                camera.stopPreview();
                camera.release();
                camera = null;
            }

 

ok. ^_^

android 开发之 - 调用系统闪光灯

标签:android   style   blog   color   io   ar   div   sp   art   

原文地址:http://www.cnblogs.com/SomnusLove/p/3990167.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!