【问题标题】:How to make transparent gradient?如何制作透明渐变?
【发布时间】:2011-04-18 22:13:24
【问题描述】:

我有以下渐变:

<?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>

【问题讨论】:

    标签: android listview transparency gradient


    【解决方案1】:

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

    【讨论】:

    • 最好使用@android:color/transparent 而不是#00xxxxxx
    【解决方案2】:

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

    这将使它是透明的,但是,这是为了使它完全透明...

    【讨论】:

      【解决方案3】:

      你可以试试下面的代码:

      <gradient android:startColor="#hex_of_any_color" android:endColor="#00000"/>
      

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2011-07-26
        • 2020-04-27
        • 2018-07-06
        • 2013-05-13
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多