欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android shape 圆形背景绘制注意

程序员文章站 2022-06-26 14:48:35
1、新建xml文件

1、新建xml文件

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval"
    android:useLevel="false">
    <solid android:color="@color/color_EE6911" />
    <size
        android:width="1dp"
        android:height="1dp" />
</shape>

2、在使用的时候一定要注意控件的宽高一致,不然会拉伸变形
android:layout_width=“60dp”
android:layout_height=“60dp”

        <Button
            android:layout_width="60dp"
            android:layout_height="60dp"
            android:textColor="@color/color_FFFFFF"
            android:background="@drawable/bg_circle_ee6911"
            android:layout_marginRight="20dp"
            android:text="咨询" />

本文地址:https://blog.csdn.net/weixin_45883025/article/details/110677474

相关标签: android