स्टेटस बार का रंग सेट करने का दूसरा तरीका style.xml है ।
ऐसा करने के लिए, इस सामग्री के साथ Res / मान- v21 फ़ोल्डर के तहत एक style.xml फ़ाइल बनाएं :
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppTheme" parent="android:Theme.Material">
<!-- darker variant for the status bar and contextual app bars -->
<item name="android:colorPrimaryDark">@color/blue_dark</item>
</style>
</resources>
संपादित करें: जैसा कि टिप्पणियों में बताया गया है, AppCompat का उपयोग करते समय कोड अलग होता है। इसके स्थान पर फ़ाइल रेस / मान / style.xml उपयोग करें:
<style name="Theme.MyTheme" parent="Theme.AppCompat.Light">
<!-- Set AppCompat’s color theming attrs -->
<item name="colorPrimary">@color/my_awesome_red</item>
<item name="colorPrimaryDark">@color/my_awesome_darker_red</item>
<!-- Other attributes -->
</style>