我在状态栏上添加了主要深色,使其成为工具栏的颜色。
但我有一个向上滑动的面板,顶部有一个图像(屏幕截图),我需要将其覆盖到状态栏上。它目前就像下面的截图。
答案 0 :(得分:2)
将以下内容放在您的AppTheme样式的values-v21文件夹(styles.xml)中:
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
<item name="android:statusBarColor">@android:color/transparent</item>
</style>
默认情况下,状态栏颜色由&#34; colorPrimaryDark&#34;确定。将以上主题应用于androidManifest.xml中的特定活动。 (父主题可以是任何东西)