我试图将某些按钮设置为透明,部分透明。他们使用透明/纯色渐变。
它们在预览中显示得很好,但在模拟器和手机上它会失去所有透明度。
这是我的XML代码:
<Button
android:id="@+id/barbarian"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/button_gradient"
android:text="@string/barbarian" />
如果需要,xml渐变代码:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="@android:color/transparent"
android:endColor="#FF000000"
android:angle="0" />
</shape>
我感谢所有人的帮助!