欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

Android Camera开发手电筒功能

时间:2021-11-26 11:55:19|栏目:Android代码|点击:

这是一个简单的运用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 Studio 3.0 Gradle 配置变更

栏    目:Android代码

下一篇:android获取屏幕高度和宽度的实现方法

本文标题:Android Camera开发手电筒功能

本文地址:http://www.codeinn.net/misctech/184807.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有