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>

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

相关文章

  • Android实现注册页面(携带数据包跳转)

    Android实现注册页面(携带数据包跳转)

    这篇文章主要为大家详细介绍了Android实现注册页面,点击注册按钮跳转到另一个页面并显示输入信息,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-04-04
  • 仿iphone中短信以及通话记录的时间显示

    仿iphone中短信以及通话记录的时间显示

    本篇文章是对仿iphone中短信以及通话记录的时间显示进行了详细的分析介绍,需要的朋友参考下
    2013-06-06
  • Android获取手机本机号码的实现方法

    Android获取手机本机号码的实现方法

    这篇文章主要介绍了Android获取手机本机号码的实现方法的相关资料,希望通过本文大家能够实现这样的方法,需要的朋友可以参考下
    2017-10-10
  • Android实现可复用的筛选页面

    Android实现可复用的筛选页面

    这篇文章主要为大家详细介绍了Android实现可复用的筛选页面,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2019-06-06
  • RecyclerBezierChart曲线图表绘制

    RecyclerBezierChart曲线图表绘制

    这篇文章主要为大家介绍了RecyclerBezierChart曲线图表绘制示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-12-12
  • android文件存储和SharedPreferences存储的项目实例

    android文件存储和SharedPreferences存储的项目实例

    本文主要介绍了android文件存储和SharedPreferences存储的项目实例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2022-05-05
  • Android 沉浸式状态栏与隐藏导航栏实例详解

    Android 沉浸式状态栏与隐藏导航栏实例详解

    沉浸式状态栏是指状态栏与ActionBar颜色相匹配,隐藏导航栏,就是将导航栏隐藏,去掉下面的黑条。下面通过实例给大家详解android沉浸式状态栏与隐藏导航栏,感兴趣的朋友一起看看
    2017-07-07
  • Kotlin自定义菜单控件

    Kotlin自定义菜单控件

    这篇文章主要为大家详细介绍了Kotlin自定义菜单控件,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-07-07
  • Android View 完美实现EditText 在软键盘上边的示例

    Android View 完美实现EditText 在软键盘上边的示例

    本篇文章主要介绍了Android View 完美实现EditText 在软键盘上边的示例,具有一定的参考价值,有兴趣的可以了解一下
    2017-08-08
  • Android开发利器之pidcat安装方式

    Android开发利器之pidcat安装方式

    pidcat 是Android届JakeWharton大神开发的一款命令行工具,堪称Android开发利器,它能方便Android程序猿捕获日志,过滤日志,定位程序问题,超级好用。这篇文章给大家介绍了Android开发利器之pidcat,需要的朋友可以参考下
    2019-05-05

最新评论