5

我正在尝试实现此页面上显示的示例。我已经在运行 android 4 及更高版本的三种不同设备上进行了尝试,在所有情况下,我都会收到带有以下警告的黑屏:

01-27 20:01:22.683: W/TextureView(4728): A TextureView or a subclass can only be used with hardware acceleration enabled.

我在应用程序清单中打开了硬件加速:

<application
    android:hardwareAccelerated="true"
    [etc...]

但以下检查我的自定义视图的 onAttachedToWindow 方法总是返回 false

private class MyTextureView extends TextureView
{
    public MyTextureView(Context context) {
        super(context);
    }

    @Override
    protected void onAttachedToWindow()
    {
        super.onAttachedToWindow();
        Log.d("", Boolean.toString(mTextureView.isHardwareAccelerated()));          
    }
}

有谁知道这里有什么问题?

谢谢

4

1 回答 1

0

如果您使用模拟器进行测试,请检查硬件加速配置。请查看此线程以获取更多信息:http: //developer.android.com/tools/devices/emulator.html#acceleration

于 2014-06-25T06:50:09.533 回答