在Android曲线侧面创建按钮

时间:2015-11-01 05:40:02

标签: android android-drawable android-button

How can i create exactly the same buttons as shown in android?

我是一名新学员,我正在创建一个计算提示的应用程序。 如何在左右两侧制作按钮?

1 个答案:

答案 0 :(得分:2)

在xml中添加按钮背景。

          <Button
            android:id="@+id/login_loginbt"
            android:layout_width="fill_parent"
            android:text="Login"
            android:textColor="#ffffff"
            android:background="@drawable/curve_button"
            android:textSize="18dp"
            android:textStyle="bold" />

然后创建一个新的xml“curve_button.xml”并粘贴此曲线边缘按钮的代码。

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
 <item >
    <shape android:shape="rectangle"  >
        <corners android:radius="25dip" />
        <stroke android:width="1dip" android:color="#ff0000" />
        <gradient android:angle="-90" android:startColor="#ff0000" android:endColor="#ff0000" />
    </shape>
</item>