我面临着三星Galaxy Tab的问题。我想将相机闪光灯用作手电筒。

有谁知道如何启用它?

因此,一个代码可以在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>

layout/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>

谢谢 !

最佳答案

你没有做错任何事。实际上,您所做的一切都是正确的。您遇到的设备特定问题在Android世界中非常普遍。我发现了FLASH_MODE_TORCH的以下行为模式:

  • 在所有情况下都可以正常工作
  • 可以正常工作,但不能自动聚焦于
  • 根本不起作用

  • 令人沮丧的是,当只有少数设备实际支持getSupportedFlashModes()时,它将在几乎所有设备上返回FLASH_MODE_TORCH。

    此外,某些设备的实现会使支持的闪光模式陷入困惑。如果您浏览了Camera.Parameters,则可以尝试将闪光模式设置为FLASH_MODE_ON,FLASH_MODE_AUTO或FLASH_MODE_RED_EYE,然后查看它们是否有效。注意-这是特定于设备的黑客。

    我已经向Google提交了有关DroidX和Nexus S的these types of bugs。他们将其作为设备特定的问题予以关闭。我想将其报告给三星,以期希望获得驱动程序或固件修复,但他们的Android支持 channel do not exist

    关于android - 如何在Samsung Galaxy Tab上将相机闪光灯/LED用作手电筒?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5017455/

    10-09 07:20