通过 http://www.cnblogs.com/bastard/archive/2012/06/27/2566087.html 我知道了如何自定义标题栏,但是还是无法实现 标题栏半透明 的效果。不知道怎么实现啊
style文件:
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">    <style name="CustomWindowTitleBackground">
        <item name="android:background">#e0000000</item>
    </style>    <style name="test" parent="android:Theme">
        <item name="android:windowTitleSize">100dp</item>
        <item name="android:windowTitleBackgroundStyle">@style/CustomWindowTitleBackground</item>
    </style></resources>怎么设置 这个 style半透明呢?AndroidJava