如何在android中创建3D形状按钮?

时间:2013-08-28 07:44:35

标签: android android-layout user-interface 3d

我想创建3D形状按钮我尝试了形状但没有运气。我在下面使用了代码。我期待结果

like this

<?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中带来那样的按钮。请给你有价值的想法。

0 个答案:

没有答案