Android 自定义标题栏(title栏)

<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="CustomWindowTitleBackground">
       <item name="android:background">#00cc00</item>
</style>
<style name="test" parent="android:Theme">
     <item name="android:windowTitleSize">50dp</item>
     <item name="android:windowTitleBackgroundStyle">@style/CustomWindowTitleBackground</item>
</style>
</resources>


你可能感兴趣的:(android,自定义标题栏,title栏)