我正面臨三星Galaxy Tab的問題。我想用相機閃光燈作爲手電筒。如何在三星Galaxy Tab上使用相機閃光燈/ led作爲手電筒?
有誰知道如何啓用它?
特此通過一個代碼來啓用/禁用HTC Desire上的相機閃光燈,但在Samsung Galaxy Tab上失敗。
FlashLight.java:
package com.example.FlashLight;
import android.app.Activity;
import android.hardware.Camera;
import android.hardware.Camera.Parameters;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class FlashLight extends Activity {
private final static String LOG_TAG = "FlashLight";
private Button mOnBtn;
private Button mOffBtn;
private Camera mCamera;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mOnBtn = (Button) findViewById(R.id.on_btn);
mOnBtn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
processOnClick();
}
});
mOffBtn = (Button) findViewById(R.id.off_btn);
mOffBtn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
processOffClick();
}
});
}
@Override
protected void onResume() {
super.onResume();
try{
mCamera = Camera.open();
} catch(Exception e){
Log.e(LOG_TAG, "Impossible d'ouvrir la camera");
}
}
@Override
protected void onPause() {
if(mCamera != null){
mCamera.release();
mCamera = null;
}
super.onPause();
}
private void processOffClick(){
if(mCamera != null){
Parameters params = mCamera.getParameters();
params.setFlashMode(Parameters.FLASH_MODE_OFF);
mCamera.setParameters(params);
}
}
private void processOnClick(){
if(mCamera != null){
Parameters params = mCamera.getParameters();
params.setFlashMode(Parameters.FLASH_MODE_TORCH);
mCamera.setParameters(params);
}
}
}
的AndroidManifest.xml:
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".FlashLight"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />
</manifest>
拉YOUT/main.xml中:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<Button
android:id="@+id/on_btn"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Flash ON" />
<Button
android:id="@+id/off_btn"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Flash OFF" />
</LinearLayout>
謝謝!
此外,我會將「flash」作爲標記移除,因爲它會將Flash與運行時環境Flash混淆。 – 2011-02-16 14:20:33
感謝willytate,我用「led」代替「閃光燈」 – Sly 2011-02-16 14:57:10
@TeddyBearFr我已經嘗試在我的HTC WildFire A3333中使用你的代碼,它可以正常使用閃光燈打開和關閉,但是相同的代碼在Android中不起作用Samsung Galaxy Ace s- 5830移動任何想法做適合在這兩種設備上工作。 – Herry 2011-08-24 09:46:46