1. ホーム
  2. android

透明なグラデーションを作るには?

2023-10-01 01:35:11

質問

以下のようなグラデーションがあります。

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

どのように解決するのですか?

8桁の色値、例えば #FFF8F8F6 を使えばよいのです。最初の2文字はアルファ値です。FFは完全に不透明であり、00は完全に透明です。