8

我遇到了以下问题:我的手电筒应用程序在我的三星 Galaxy S2 上运行良好,但不幸的是在三星 Galaxy Nexus 上运行不正常(问题:手电筒忽略按钮点击 -> 无反应、无光、无崩溃、无异常)。我读过“Galaxy Nexus 上的 LED 手电筒可由什么 API 控制?” 在stackoverflow中,但它对我没有帮助,因为我的问题仍然存在。这是我控制灯光的代码片段:

final Button FlashLightControl = (Button)findViewById(R.id.ledbutton);
FlashLightControl.setOnClickListener(new Button.OnClickListener()
{
        public void onClick(View arg) 
        {
            if(camera != null)
            {
                //in case light is on we will turn it off
                parameters = camera.getParameters();
                parameters.setFlashMode(Parameters.FLASH_MODE_OFF);
                camera.setParameters(parameters);
                camera.stopPreview();
                camera.release();
                camera = null;
            }
            else
            {
                // light is off - we turn it on
                camera = Camera.open();
                parameters = camera.getParameters();
                parameters.setFlashMode(Parameters.FLASH_MODE_TORCH);
                camera.setParameters(parameters);
                camera.startPreview();
            }
        }}); 

有任何想法吗?为了完整起见 - 这些是我添加到 Androidmanifest.xml 的权限:

    <uses-feature android:name="android.hardware.camera.flash" />
<uses-sdk android:minSdkVersion="7" />
<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>

有人可以帮忙吗?

亲切的问候, CarpeTemporem

4

2 回答 2

17

我也遇到了同样的问题,但我试图从服务中打开 LED,所以我无法使用 1x1 SurfaceView。这是我为使其工作所做的工作。

private void turnLEDOn() throws IOException
{
    // In order to work, the camera needs a surface to turn on.
    // Here I pass it a dummy Surface Texture to make it happy.
    camera = Camera.open();
    camera.setPreviewTexture(new SurfaceTexture(0));
    camera.startPreview();
    Parameters p = camera.getParameters();
    p.setFlashMode(Camera.Parameters.FLASH_MODE_TORCH);
    camera.setParameters(p);
}

private void turnLEDOff()
{
    if (camera != null)
    {
        // Stopping the camera is enough to turn off the LED
        camera.stopPreview();
        camera.release();
        camera = null;
    } else
        throw new NullPointerException("Camera doesn't exist to turn off.");

}

SurfaceTexture 是在 API 级别 11 (Android 3.0) 中添加的,因此它仅适用于 Honeycomb 或更新版本。对于较旧的 API 级别,您可以在另一个答案中坚持使用 SurfaceView 技巧。

于 2013-03-25T04:05:17.203 回答
4

我遇到了同样的问题,并通过使用具有 1px 宽度和 1px 高度的 Surface View 解决了它

于 2012-05-10T11:19:10.677 回答