Android XML drawable 透明渐变不透明

Evg*_*niy 4 android android-drawable

我想创建一个像 Play Music 一样的透明渐变。

可绘制/shadow_up.xml:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <gradient
        android:angle="90"
        android:startColor="#FF00FF00"
        android:endColor="#00FFFFFF"/>
</shape>
Run Code Online (Sandbox Code Playgroud)

布局/main_layout.xml:

 <LinearLayout
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:orientation="vertical">

                   <View
                        android:layout_width="match_parent"
                        android:layout_height="25dp"
                        android:background="@drawable/shadow_up"/>
</LinearLayout>
Run Code Online (Sandbox Code Playgroud)

但是渐变不是透明的。如何解决这个问题?

在此处输入图片说明

Play Music 的渐变:

在此处输入图片说明

它透明。

Chr*_* K. 5

最可能的答案是您的渐变视图不与列表视图重叠 - 换句话说,列表视图在您的渐变上方,渐变 xml 是正确的,它的视图定位错误。你应该尝试更像这样的东西

<ReltaiveLayout
  android:layout_width="match_parent"
  android:layout_height="match_parent">

  Your litview goes here, with both dimensions match parent

                 <View
                    android:layout_alignParentBottom="true"
                    android:layout_width="match_parent"
                    android:layout_height="25dp"
                    android:background="@drawable/shadow_up"/>
</RelativeLayout>
Run Code Online (Sandbox Code Playgroud)