<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>
在任何使用Android 8.0系统的设备上,GLSufaceView无法正常运行 但它确实适用于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);
答案 0 :(得分:0)
我可以找到任何有用的日志,以更好地描述这种情况。但是可以通过添加
来解决此问题。 setRenderer(null);
到您的GLSurfaceView
类实例。