GLSurfaceView全屏不适用于API 27

问题描述 投票:1回答:1
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/transparent"
    tools:context="ui.wearing.WearingActivity">

    <GLSurfaceView
        android:id="@+id/camera_screen"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentTop="true">

    </GLSurfaceView>

</RelativeLayout>

GLSufaceView在使用android 8.0系统的Any Device上无法正常工作但是它适用于API版本较低的设备。超过27(8.0)!

问题是关于全屏模式:There's black area at the top of screen全屏模式的活动主要代码:

 super.onCreate(savedInstanceState);
    // remove title
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
            WindowManager.LayoutParams.FLAG_FULLSCREEN);
    setContentView(R.layout.webview_act);
android opengl-es fullscreen glsurfaceview
1个回答
0
投票

我可以找到任何有用的日志来更好地描述这种情况。但是这个问题可以通过添加来解决

setRenderer(null);

到你的GLSurfaceView类实例。

© www.soinside.com 2019 - 2024. All rights reserved.