我正试图让一个酒吧淡入我的RelativeLayout的背景。基本上从后面开始然后淡化为透明。你明白了。
这是我现在拥有的xml:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient android:startColor="@color/black_translucent"
android:endColor="#323232"
android:angle="90"
android:type="linear"
android:useLevel="true"
/>
</shape>
视图我将其应用于:
<View
android:layout_width="fill_parent"
android:layout_height="40dp"
android:background="@drawable/gradient_top" />
问题:视图底部有一个尖锐的结尾边缘。我很困惑,因为渐变以透明结束。但是我仍然在视图的底部获得了鲨鱼边缘。我怎样才能调整它以获得淡化?
答案 0 :(得分:5)
你的两种颜色都不透明。
@color/black_translucent
表明它是半透明的,而不是透明的。
您可以改用@android:color/transparent
。