我改變THA狀態欄的顏色從styles.xml:如何設置標題在Android狀態欄中中心
<resources>
<string name="app_name">Qu-easy</string>
<item name="colorPrimaryDark">@color/custom_theme_color</item>
</resources>
:
<resources>
<color name="custom_theme_color">#42A5F5</color>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimaryDark">@color/custom_theme_color</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
我也是從string.xml更改狀態欄標題
如何將標題設置爲狀態欄的中心? 我想像gravity.center?
Make custome關於這個的行動酒吧,而不是塞納標題引用這個接受的答案http://stackoverflow.com/questions/18418635/how-to-align-title-at-center-of-actionbar-in-default-themetheme-holo-光 –