适配18:9全面屏黑边问题

适配18:9全面屏黑边问题

谷歌官方默认支持宽高比例是16:9,所以在宽高比更高的设备上就会出现黑边的情况。目前有两种解决方案:

设置resizeableActivity属性值

<application 
        ...
        android:resizeableActivity="true">

注意: targetSdkVersion 24及以上默认为true,可以不用设置该属性值。

设置android.max_aspect比例值

<application>
        <meta-data
            android:name="max_aspect"
            android:value="2.1"/>
        ...
</application>

参考链接:
https://stackoverflow.com/questions/43126544/optimise-android-apps-for-phones-with-the-new-ratios-like-the-s8-18-59/43126712#43126712

猜你喜欢

转载自blog.csdn.net/darkeet/article/details/80049913
今日推荐