我想在图像上获得透明渐变,为什么透明起作用:
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.twick.screens.custom.SquaredImageView
android:id="@+id/rv_image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/office"/>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#80abcdef" > //TRANSPARENT WORK
</FrameLayout>
</android.support.v7.widget.CardView>
所以没有
android:background="@drawable/background_gradient_blue_indigo>//TRANSPARENT NOT WORK
background_gradient_blue_indigo:
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="0"
android:endColor="#800055FA" //80 transaprent
android:startColor="#807942DF" //80 transparent/>
</shape>
答案 0 :(得分:1)
将android:alpha=0.8
(或所需的浮点值)连同android:background="@drawable/background_gradient_blue_indigo"
一起添加到FrameLayout
中。
但是,请注意,这将使整个视图透明,而不是在后台绘制。