这是我的 Button.xml 文件:
<Button android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#ffffff"
android:id="@+id/tv4"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_below="@id/tv3"
android:textStyle="bold"
android:text="Contact"
android:background="@drawable/custom_button"
android:textSize="24sp"
android:typeface="serif"
android:layout_marginTop="2dip"
android:layout_marginBottom="2dip"/>
这是我的 custom_button.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape>
<gradient
android:startColor="#48b7f4"
android:endColor="#48b7f4"
android:angle="270" />
<!--stroke
android:width="1dp"
android:color="#000000" /-->
<corners
android:radius="6dp" />
</shape>
</item></selector>
如何为我的按钮添加阴影效果?我在 xml 中尝试了 shadowcolor 选项,但它不起作用。我在相同的布局中有 4 个这样的按钮。提前致谢