前言
在前些日子中,DFQ默认的全屏方案在各种花里胡哨的安卓手机屏幕(如水滴屏、额头屏等全面屏)中出现大黑边。
在游戏应用中,如果两边有黑边,自然是玩起来不舒服的;所以只能寻找解决方案进行适配。
经过一番搜寻、实践,发现问题意外的简单。
解决方案
只需要在AndroidManifest.xml中对应的Application 标签中,添加以下内容即可:
<meta-data
android:name="android.max_aspect"
android:value="2.3" />
添加以后,绝大部分的机型都能自动适应。
AndroidManifest.xml文件大致如下所示:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.koiyun.dfq"
android:installLocation="auto"
android:versionCode="12"
android:versionName="1.0.0">
<!-- 权限之类的内容 -->
<application
android:allowBackup="true"
android:icon="@drawable/icon"
android:label="DF·Quest"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
<!-- 在此处添加 -->
<meta-data
android:name="android.max_aspect"
android:value="2.3" />
<!-- Activity 标签的内容 -->
</application>
<uses-feature android:glEsVersion="0x00020000" />
</manifest>