這篇文章主要介紹了Android如何實(shí)現(xiàn)手電筒功能,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
10年積累的成都網(wǎng)站建設(shè)、網(wǎng)站建設(shè)經(jīng)驗(yàn),可以快速應(yīng)對(duì)客戶對(duì)網(wǎng)站的新想法和需求。提供各種問題對(duì)應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識(shí)你,你也不認(rèn)識(shí)我。但先建設(shè)網(wǎng)站后付款的網(wǎng)站建設(shè)流程,更有鎮(zhèn)安免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
//Activity.xml package com.fq.flashlight; import android.app.Activity; import android.app.AlertDialog; import android.content.DialogInterface; import android.hardware.Camera; import android.hardware.Camera.Parameters; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.TextView; public class LightActivity extends Activity { Button button = null; //創(chuàng)建Button類型的變量 TextView textView = null; //創(chuàng)建TextView類型的變量 Camera camera = null; //創(chuàng)建Camera類型的變量 Parameters params = null; //創(chuàng)建Parameters類型的變量 Boolean flag = true; //創(chuàng)建Boolean類型的變量,用于做是否開啟的判斷 @Override protected void onCreate(Bundle savedInstanceState){ super.onCreate(savedInstanceState); setContentView(R.layout.activity_light); button = (Button)findViewById(R.id.button); //獲取Button對(duì)象 textView = (TextView) findViewById(R.id.textView); //獲取TextView對(duì)象 button.setOnClickListener(new OnClickListener() { //點(diǎn)擊事件 @Override public void onClick(View v) { if(flag){ camera = Camera.open(); //獲取攝像頭 params = camera.getParameters(); params.setFlashMode(Parameters.FLASH_MODE_TORCH); camera.setParameters(params); camera.startPreview(); textView.setText(R.string.alert_on); button.setText(R.string.button_off); flag = false; }else{ params.setFlashMode(Parameters.FLASH_MODE_OFF); camera.setParameters(params); camera.stopPreview(); camera.release(); textView.setText(R.string.alert_off); button.setText(R.string.button_on); flag = true; } } }); } public void onBackPressed(){ //super.onBackPressed(); System.out.println("sdsfs"); new AlertDialog.Builder(this) .setTitle("確定退出嗎?") .setIcon(R.drawable.ic_launcher) .setPositiveButton("OK", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface arg0, int arg1) { // TODO Auto-generated method stub LightActivity.this.finish(); System.exit(0); } }) .setNegativeButton("Cancel", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface arg0, int arg1) { // TODO Auto-generated method stub } }) .show(); } }
BlueOcean手電筒 Hello world! Settings 手電筒當(dāng)前狀態(tài):開啟 手電筒當(dāng)前狀態(tài):關(guān)閉 開啟手電 關(guān)閉手電 Author:BlueOcean
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“Android如何實(shí)現(xiàn)手電筒功能”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來學(xué)習(xí)!