android 圆角边框 textview

来源:互联网 发布:淘宝卖家手机登录 编辑:程序博客网 时间:2024/06/07 15:46

在drawable 下创建blue_corner.xml

<?xml version="1.0" encoding="utf-8"?><shape xmlns:android="http://schemas.android.com/apk/res/android">    <!-- 设置透明背景色 -->    <solid android:color="@color/transparent" />    <!-- 设置一个黑色边框 -->    <stroke        android:width="2px"        android:color="@color/mine_page_color" />    <!-- 设置四个圆角的半径 -->    <corners        android:radius="40dp"/>    <!-- 设置一下边距,让空间大一点 -->    <padding        android:bottom="7dp"        android:left="9dp"        android:right="9dp"        android:top="7dp" /></shape>
在textview引用

<TextView    android:layout_width="wrap_content"    android:layout_height="wrap_content"    android:textColor="@color/mine_page_color"    android:background="@drawable/blue_corner"    android:textSize="13dp"    android:text="查看企业"    />

原创粉丝点击