Jak zrobić przezroczysty gradient?

Mam następujący 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>

Chcę, aby to było przejrzyste, ponieważ w moim ListView ustawiam to jako mój 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>
Author: Sheehan Alam, 2010-09-29

2 answers

Wystarczy użyć 8-cyfrowej wartości koloru, np. #fff8f8f6, gdzie dwa pierwsze znaki są wartością Alfa. FF jest w pełni nieprzezroczysty, a 00 jest w pełni przezroczysty.

 119
Author: kcoppock,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/doraprojects.net/template/agent.layouts/content.php on line 54
2010-09-29 17:53:13

Android:background="#00000000" android:cacheColorHint= "# 00000000 "

To sprawi, że będzie przezroczysty, ale to ma sprawić, że będzie pełny...

 4
Author: CadTech,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/doraprojects.net/template/agent.layouts/content.php on line 54
2010-10-19 18:07:24