GLSurfaceView全屏不适用于API 27
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GLSurfaceView全屏不适用于API 27相关的知识,希望对你有一定的参考价值。
<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);
答案
我可以找到任何有用的日志来更好地描述这种情况。但是这个问题可以通过添加来解决
setRenderer(null);
到你的GLSurfaceView
类实例。
以上是关于GLSurfaceView全屏不适用于API 27的主要内容,如果未能解决你的问题,请参考以下文章
TextureView 与 GLSurfaceView 或如何将 GLSurfaceView 与 EGL14 一起使用
在 Android 12/API 31 中,地理围栏不适用于 IMMUTABLE 未决意图。为啥?
Adobe AIR后退按钮事件不适用于Android API 28 +