按钮在预览时透明但在模拟器上是实体

时间:2018-05-18 19:33:16

标签: java android xml

我试图将某些按钮设置为透明,部分透明。他们使用透明/纯色渐变。

它们在预览中显示得很好,但在模拟器和手机上它会失去所有透明度。

Preview

Emulator

这是我的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>

我感谢所有人的帮助!

0 个答案:

没有答案