Android中編寫簡單的手電筒小應(yīng)用的實例教程
更新時間:2016年04月15日 15:43:20 作者:劍蕭舞蝶
這篇文章主要介紹了Android中編寫簡單的手電筒小應(yīng)用的實例教程,簡單粗暴地控制手機閃光燈的開閉,效果拔群XD 需要的朋友可以參考下
主要實現(xiàn)兩個步驟:
1、實現(xiàn)打開和關(guān)閉閃光燈;而實現(xiàn)操作閃光燈主要通過Camera類
Camera camera = Camera.open(); Parameters mParameters = camera.getParameters(); mParameters.setFlashMode(Camera.Parameters.FLASH_MODE_TORCH);//打開Camera.Parameters.FLASH_MODE_OFF
則為關(guān)閉
amera.setParameters(mParameters)
2、自定義閃光燈的按鈕;自定義控件主要是設(shè)置設(shè)置view的大小
onMeasure(int widthMeasureSpec, int heightMeasureSpec)
效果如下:


源碼如下:
<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"
android:gravity="center"
android:background="@drawable/light"
tools:context=".MainActivity" >
<com.android.xiong.xionglight.LightBkView
android:id="@+id/light1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</RelativeLayout>
<uses-permission android:name="android.permission.CAMERA" />
package com.android.xiong.xionglight;
import android.app.Activity;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.Menu;
public class MainActivity extends Activity {
private LightBkView light1;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
light1 = (LightBkView) findViewById(R.id.light1);
//定義單擊事件
light1.setOnClickListener(light1);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
package com.android.xiong.xionglight;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.hardware.Camera;
import android.hardware.Camera.Parameters;
import android.util.AttributeSet;
import android.view.View;
import android.view.View.OnClickListener;
public class LightBkView extends View implements OnClickListener {
Camera camera = Camera.open();
// 定義畫皮
Paint paint = new Paint();
Paint paint1 = new Paint();
int x = 0;
int y = 0;
// 打開閃光燈
boolean islight;
public LightBkView(Context context, AttributeSet set) {
super(context, set);
}
@Override
protected void onDraw(Canvas canvas) {
// 獲取控件的寬度和高度
int width = this.getWidth();
int heigth = this.getHeight();
// 圓點的坐標
x = width / 2;
y = heigth / 2;
//更換開關(guān)背景
if(!islight){
paint.setColor(Color.BLUE);
canvas.drawCircle(x, y, 60, paint);
paint1.setColor(Color.RED);
paint1.setTextSize(20);
canvas.drawText("打開閃光燈", x-50, y, paint1);
invalidate();
}else{
paint.setColor(Color.WHITE);
canvas.drawCircle(x, y, 60, paint);
paint1.setColor(Color.RED);
paint1.setTextSize(20);
canvas.drawText("關(guān)閉閃光燈", x-50, y, paint1);
invalidate();
}
}
// 定義View的大小
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
setMeasuredDimension(getWidth(widthMeasureSpec),
getHeight(heightMeasureSpec));
}
//定義view的寬度
public int getWidth(int widthMeasureSpec) {
int reslut = 0;
int widthMode = MeasureSpec.getMode(widthMeasureSpec);
if (widthMode == MeasureSpec.AT_MOST) {
reslut = 120;
}
if (widthMode == MeasureSpec.EXACTLY) {
reslut = MeasureSpec.getSize(widthMeasureSpec);
}
return reslut;
}
//定義view的高度
public int getHeight(int heightMeasureSpec) {
int reslut = 0;
int heightMode = MeasureSpec.getMode(heightMeasureSpec);
if (heightMode == MeasureSpec.AT_MOST) {
reslut = 120;
}
if (heightMode == MeasureSpec.EXACTLY) {
reslut = MeasureSpec.getSize(heightMeasureSpec);
}
return reslut;
}
// 實現(xiàn)閃光燈的的開關(guān)
@Override
public void onClick(View v) {
if (!islight) {
Parameters mParameters = camera.getParameters();
mParameters.setFlashMode(Camera.Parameters.FLASH_MODE_TORCH);
camera.setParameters(mParameters);
islight = true;
} else {
Parameters mParameters = camera.getParameters();
mParameters.setFlashMode(Camera.Parameters.FLASH_MODE_OFF);
camera.setParameters(mParameters);
islight = false;
}
}
}
相關(guān)文章
Android中HorizontalScrollView使用方法詳解
這篇文章主要為大家詳細介紹了Android中HorizontalScrollView使用方法,感興趣的小伙伴們可以參考一下2016-05-05
Android仿抖音右滑清屏左滑列表功能的實現(xiàn)代碼
這篇文章主要介紹了Android仿抖音右滑清屏左滑列表功能,本文通過實例代碼給大家介紹的非常詳細,對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下2020-06-06
Android調(diào)用OpenCV2.4.10實現(xiàn)二維碼區(qū)域定位
這篇文章主要為大家詳細介紹了Android調(diào)用OpenCV 2.4.10實現(xiàn)二維碼區(qū)域定位,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下2018-03-03
Android Studio 新手入門教程(一)基本設(shè)置圖解
這篇文章主要介紹了Android Studio 新手入門教程(一)基本設(shè)置圖解,需要的朋友可以參考下2017-12-12
Android view更改背景資源與padding消失的問題解決辦法
這篇文章主要介紹了Android view更改背景資源與padding消失的問題解決辦法的相關(guān)資料,需要的朋友可以參考下2017-04-04

