如何在android中创建透明圆角按钮?

时间:2016-03-16 17:12:56

标签: android android-layout android-button

我想创建按钮登录并注册

this

1 个答案:

答案 0 :(得分:3)

在你的布局中包含button.xml并通过给它一个id作为按钮使用它,或者你也可以将边框设置为按钮以获得相同的结果

button.xml

 <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                  android:layout_width="match_parent"
                  android:layout_height="wrap_content"
                  android:background="@drawable/border">

        <TextView android:id="@+id/skillTextView"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:text="Cleaner"
              android:textSize="@dimen/abc_text_size_medium_material"
              android:textColor="@color/text_grey"
              android:layout_margin="@dimen/normal_margin"
              android:layout_centerInParent="true"
    />
    </RelativeLayout>

抽拉/ border.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
       android:shape="rectangle">
    <corners
            android:radius="5dp"
            />
    <stroke
            android:width="1dp"
            android:color="@color/white" />
</shape>