- 人气:
- 放大
- 缩小
- 二维码
- 赞赏
delphi 10.3.1 android沉浸式透明状态栏
从10.2升级上来,
之前的沉浸状态栏在android手机上不透明了,
添加二个发布文件,remote path分别设为 res\values-v21和 res\values-v19
style.xml文件内容(记得把*都去掉)
<*resources xmlns:android="http://schemas.android.com/apk/res/android">
<*style name="AppTheme" parent="@android:style/Theme.NoTitleBar">
<*item name="android:windowBackground">@drawable/splash_image
<*item name="android:windowNoTitle">true
<*item name="android:windowFullscreen">true
<*item name="android:windowContentOverlay">@null
<*item name="android:windowTranslucentStatus">true
<*item name="android:windowTranslucentNavigation">true
<*/style>
<*/resources>
- @drawable/splash_image
- true
- true
- @null
- true
- true
来源:https://www.cnblogs.com/onexyz/p/10455798.html
- @drawable/splash_image
- true
- true
- @null
- true
- true