我想创建我尝试过的 3D 形状按钮,但没有运气。我使用了下面的代码。我期待结果
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line" >
<!-- Specify a gradient for the background -->
<gradient
android:angle="45"
android:centerColor="#00000000"
android:centerX="0.75"
android:endColor="#00000000"
android:startColor="#55000066" />
<corners
android:bottomLeftRadius="10dp"
android:bottomRightRadius="10dp"
android:topLeftRadius="10dp"
android:topRightRadius="10dp" />
<stroke
android:dashGap="0dp"
android:dashWidth="10dp"
android:width="50dp"
android:color="#303030" />
我想创建像那个按钮如何在android中带来像那个按钮。请给你宝贵的意见。