如何在Android中创建如下所示的按钮?在大多数情况下,我按下按钮的主要部分。我似乎无法弄清楚阴影和点击动画。
按钮
<Button
android:text="Connect"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/connectionStatus"
android:layout_centerHorizontal="true"
android:id="@+id/button"
android:background="@drawable/button_background"
android:minWidth="300dp"
android:layout_marginTop="32dp"
android:onClick="onClick"
android:textColor="#fff"
/>
这是可绘制的
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:startColor="#21D4FD"
android:endColor="#B721FF"
android:angle="45"
/>
<corners android:bottomLeftRadius="20dip"
android:topRightRadius="20dip"
android:topLeftRadius="20dip"
android:bottomRightRadius="20dip"
/>
</shape>
这就是我目前所拥有的:
这就是我想要的: