android设置状态栏颜色
时间: 2023-10-18 18:22:33 浏览: 98
Android自定义状态栏颜色与APP风格保持一致的实现方法
在 Android 中设置状态栏颜色可以使用以下步骤:
1. 在 res/values/styles.xml 文件中添加以下代码:
```xml
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:statusBarColor">@color/colorPrimaryDark</item>
</style>
```
这里使用了 `colorPrimaryDark` 作为状态栏的颜色,你可以根据自己的需要修改。
2. 在 AndroidManifest.xml 文件中的 `<application>` 标签下添加 `android:theme` 属性:
```xml
<application
android:theme="@style/AppTheme"
...
</application>
```
这样就完成了状态栏颜色的设置。注意,这个方法只在 Android 5.0 及以上版本有效。在低版本中可以考虑使用第三方库来实现。
阅读全文