zl程序教程

您现在的位置是:首页 >  移动开发

当前栏目

Android Button 实现透明 + 圆角按钮效果

Android 实现 效果 按钮 button 透明 圆角
2023-09-14 09:04:24 时间

效果图:
在这里插入图片描述

在 drawable 中,新建 shape.xml 文件:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">

    <!-- 填充的颜色 -->
    <solid android:color="#25000000" />

    <!-- 设置按钮的四个角为弧形 -->
    <!-- android:radius 弧形的半径 -->
    <corners android:radius="50dip" />
    //这里是设置圆的弧度,也就是越大越圆

    <!-- padding:Button里面的文字与Button边界的间隔 -->
    <padding
        android:bottom="10dp"
        android:left="10dp"
        android:right="10dp"
        android:top="10dp" />

</shape>

activity_main.xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/ic_bagoud"
    tools:context=".MainActivity">

    <Button
        android:id="@+id/btn_register"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="150dp"
        android:background="@drawable/shape"
        android:layout_marginTop="30dp"
        android:textColor="#f5f9f7"
        android:layout_centerInParent="true"
        android:textSize="18dp"
        android:text="立即登录"/>

</RelativeLayout>