自定义ActionBar背景(分别针对3.0以下和3.0以上的版本)_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > 自定义ActionBar背景(分别针对3.0以下和3.0以上的版本)

自定义ActionBar背景(分别针对3.0以下和3.0以上的版本)

 2015/1/28 14:44:18  rainmer  程序员俱乐部  我要评论(0)
  • 摘要:官方原文:http://developer.android.com/training/basics/actionbar/styling.html针对3.0以上的版本:<?xmlversion="1.0"encoding="utf-8"?><resourcesxmlns:android="http://schemas.android.com/apk/res/android"><
  • 标签:

官方原文:http://developer.android.com/training/basics/actionbar/styling.html

针对3.0以上的版本

<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">

    <style name="CustomActionBarTheme" parent="@android:style/Theme.Holo.Light.DarkActionBar">
        <item name="android:actionBarStyle">@style/CustomBackground</item>
    </style>

    <style name="CustomBackground" parent="@android:style/Widget.Holo.Light.ActionBar.Solid.Inverse">
        <item name="android:background">@drawable/actionbar_background</item>
    </style>
    
    <style 
        name="CustomActionBarOverlayTheme"
        parent="@android:style/Theme.Holo"
        >
        <item name="android:windowActionBarOverlay">true</item>
        
    </style>

</resources>

针对3.0以下版本:要导入v7兼容包。

<?xml version="1.0" encoding="utf-8"?>
<resources>
    
    <style name="CustomActionBarTheme" parent="@style/Theme.AppCompat.Light.DarkActionBar">
        <item name="actionBarStyle">@style/CustomBackground</item>
    </style>

    <style name="CustomBackground" parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
        <item name="background">@drawable/actionbar_background</item>
    </style>
    
    <style 
        name="CustomActionBarOverlayTheme"
        parent="@style/Theme.AppCompat"
        >
        <item name="windowActionBarOverlay">true</item>
        
    </style>
    
</resources>

 

  • 相关文章
发表评论
用户名: 匿名