如何制作透明渐变?

时间:2010-09-29 16:18:42

标签: android listview transparency gradient

我有以下渐变:

<?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android">
        <gradient 
            android:startColor="#ECECEC"
            android:centerColor="#F6F6F4"
            android:endColor="#F8F8F6"
            android:angle="90"
            android:dither="true"
         />
    </shape>

我希望这是透明的,因为在我的ListView中我将它设置为我的ListSelector:

<ListView android:layout_width="fill_parent"
                android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android"
                android:id="@+id/ARListView" 
                android:background="@drawable/transparent_background" 
                android:cacheColorHint="#00000000" android:drawSelectorOnTop="true" 
                android:listSelector="@drawable/stocks_selected_gradient">
</ListView>

3 个答案:

答案 0 :(得分:130)

只需使用8位数的颜色值,例如#FFF8F8F6,其中前两个字符是alpha值。 FF完全不透明,00完全透明。

答案 1 :(得分:4)

android:background =“#00000000”android:cacheColorHint =“#00000000”

这将使透明化,但这是为了使其完全透明......

答案 2 :(得分:1)

您可以尝试以下代码:

<gradient android:startColor="#hex_of_any_color" android:endColor="#00000"/>
相关问题