在三星 S8 上优化全屏应用
Optimize app for full screen on Samsung S8
在一系列设备上测试我的应用程序后,我注意到在三星 S8 等大型设备上,该应用程序无法完全缩放到屏幕边缘。
经过一些研究,我可以通过编辑 phone 上的设置让我的应用程序一直伸展。
但是,它警告我我的应用程序可能无法运行,因为它没有针对大小进行优化。但是,我的应用程序运行良好。如何优化我的应用程序,以便三星 Galaxy 等手机在默认情况下 运行 我的应用程序全屏显示?
我已经在类似问题 的帮助下制作了隐藏菜单按钮和状态栏的应用程序 运行。
引用 :
In the <application>
tag of your app manifest, add the following
meta-data:
<meta-data android:name="android.max_aspect" android:value="2.1" />
By doing so, you tell the android system that this app is designed to
support maximum aspect ratio of 18.5:9 (approx. and that by the way is
the aspect ratio of S8).
这对我有用,并从显示设置菜单的列表中删除了我的应用程序(以及警告)。
在一系列设备上测试我的应用程序后,我注意到在三星 S8 等大型设备上,该应用程序无法完全缩放到屏幕边缘。
经过一些研究,我可以通过编辑 phone 上的设置让我的应用程序一直伸展。
但是,它警告我我的应用程序可能无法运行,因为它没有针对大小进行优化。但是,我的应用程序运行良好。如何优化我的应用程序,以便三星 Galaxy 等手机在默认情况下 运行 我的应用程序全屏显示?
我已经在类似问题
引用
In the
<application>
tag of your app manifest, add the following meta-data:<meta-data android:name="android.max_aspect" android:value="2.1" />
By doing so, you tell the android system that this app is designed to support maximum aspect ratio of 18.5:9 (approx. and that by the way is the aspect ratio of S8).
这对我有用,并从显示设置菜单的列表中删除了我的应用程序(以及警告)。