Android Camera开发手电筒功能

 更新时间:2016年07月20日 10:00:05   投稿:lijiao  
这篇文章主要介绍了Android Camera开发手电筒功能的相关资料,需要的朋友可以参考下

这是一个简单的运用Android Camera开发手电筒功能,AndroidManifest.xml文件的入口是startapp,这个文件没上传上来,大家可以自己写。

flashlight.java

package com.android.app;

import android.app.Activity;
import android.hardware.Camera;
import android.hardware.Camera.Parameters;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
import android.widget.Toast; 

public class Main extends Activity {
 private boolean isopent = false;
 private Camera camera; 

 @Override

 protected void onCreate(Bundle savedInstanceState) {
  // TODO Auto-generated method stub
  super.onCreate(savedInstanceState);
  View view = View.inflate(this, R.layout.main, null);
  setContentView(view);
  TextView img_but = (TextView) findViewById(R.id.main_img);
  img_but.setOnClickListener(new View.OnClickListener() {

   @Override
   public void onClick(View v) {
    // TODO Auto-generated method stub
    if (!isopent) {
     Toast.makeText(getApplicationContext(), "您已经打开了手电筒", 0)
       .show();
     camera = Camera.open();
     Parameters params = camera.getParameters();
     params.setFlashMode(Parameters.FLASH_MODE_TORCH);
     camera.setParameters(params);
     camera.startPreview(); // 开始亮灯

     isopent = true;

    } else {
     Toast.makeText(getApplicationContext(), "关闭了手电筒",
       Toast.LENGTH_SHORT).show();
     camera.stopPreview(); // 关掉亮灯
     camera.release(); // 关掉照相机
     isopent = false;

    }

   }

  });

 }

 

}

布局文件代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="<a href="http://schemas.android.com/apk/res/android&quot;" rel="nofollow" target="_blank">http://schemas.android.com/apk/res/android"</a>
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical" >
 
 <TextView
  android:id="@+id/main_img"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:background="@drawable/main_body">
 </TextView>

</LinearLayout>

AndroidManifest.xml文件

<manifest xmlns:android="<a href="http://schemas.android.com/apk/res/android&quot;" rel="nofollow" target="_blank">http://schemas.android.com/apk/res/android"</a>
 package="com.android.app"
 android:versionCode="1"
 android:versionName="1.0" > 

 <uses-sdk
  android:minSdkVersion="8"
  android:targetSdkVersion="15" />
 <application
  android:icon="@drawable/ic_launcher"
  android:label="@string/app_name"
  android:theme="@style/AppTheme" >
  <activity android:name=".AppStart" >
   <intent-filter>
    <action android:name="android.intent.action.MAIN" />

 

    <category android:name="android.intent.category.LAUNCHER" />
   </intent-filter>
  </activity>
  <activity android:name=".Main" >
  </activity>
 </application>
 <!-- 摄像头、手电筒 -->
 <uses-permission android:name="android.permission.CAMERA" />
 <uses-permission android:name="android.permission.FLASHLIGHT" />

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

</manifest>

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

相关文章

  • Kotlin中内置函数的用法和区别总结

    Kotlin中内置函数的用法和区别总结

    众所周知相比Java, Kotlin提供了不少高级语法特性。对于一个Kotlin的初学者来说经常会写出一些不够优雅的代码。下面这篇文章主要给大家介绍了关于Kotlin中内置函数的用法和区别的相关资料,需要的朋友可以参考下
    2018-06-06
  • Android如何快速适配暗黑模式详解

    Android如何快速适配暗黑模式详解

    微信在前段时间的更新中也实现了暗黑模式,而苹果系统也早就支持暗黑模式,Android也一样可以实现,下面这篇文章主要给大家介绍了关于Android如何快速适配暗黑模式的相关资料,需要的朋友可以参考下
    2021-08-08
  • Android中关于Binder常见面试问题小结

    Android中关于Binder常见面试问题小结

    这篇文章主要介绍了Android中关于Binder几个面试问题,binder是一种进程间通讯的机制,进程间通讯需要了解用户空间和内核空间,本文通过示例代码给大家介绍的非常详细,需要的朋友可以参考下
    2022-06-06
  • Android实现音频条形图效果

    Android实现音频条形图效果

    这篇文章主要为大家详细介绍了Android实现音频条形图效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-08-08
  • android控件封装 自己封装的dialog控件

    android控件封装 自己封装的dialog控件

    自定义dialog肯定是用的很多了 但是感觉每次做都是很乱单纯完成任务而已,现在封装了一下以后用到直接copy,需要的朋友可以参考下
    2012-11-11
  • 解决android.support.v4.content.FileProvide找不到的问题

    解决android.support.v4.content.FileProvide找不到的问题

    这篇文章主要介绍了解决android.support.v4.content.FileProvide找不到的问题,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2020-03-03
  • Android 实现监听的四种方法详解实例代码

    Android 实现监听的四种方法详解实例代码

    这篇文章主要介绍了Android 实现监听的方法详解实例代码的相关资料,这里整理了四种方法,需要的朋友可以参考下
    2016-10-10
  • Android自定义流式布局实现淘宝搜索记录

    Android自定义流式布局实现淘宝搜索记录

    这篇文章主要为大家详细介绍了Android自定义流式布局实现淘宝搜索记录,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2020-10-10
  • android view实现一张图片的渐隐效果

    android view实现一张图片的渐隐效果

    这篇文章主要为大家详细介绍了android view实现一张图片的渐隐效果,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-07-07
  • Android学习之Fragment

    Android学习之Fragment

    Fragment是什么?碎片(Fragment)是一种可以嵌入在活动(activity)当中的UI片段,想要了解碎片的简单用法的朋友可以参考一下
    2016-01-01

最新评论