Android TextView设置背景色与边框的方法详解
时间:2021-01-12 13:20:20|栏目:Android代码|点击: 次
1.在drawable文件夹下面创建setbar_bg.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<!-- 背景色 -->
<solid android:color="#FFE4B5"/>
<!-- 边框色 -->
<stroke android:width="0.5dip" android:color="#81CE47" />
</shape>
2.设置TextView顺序
android:background="@drawable/setbar_bg"
复制代码 代码如下:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<!-- 背景色 -->
<solid android:color="#FFE4B5"/>
<!-- 边框色 -->
<stroke android:width="0.5dip" android:color="#81CE47" />
</shape>
2.设置TextView顺序
复制代码 代码如下:
android:background="@drawable/setbar_bg"
上一篇:Android自定义可循环的滚动选择器CycleWheelView
栏 目:Android代码
下一篇:Kotlin中单利常用的五种写法
本文标题:Android TextView设置背景色与边框的方法详解
本文地址:http://www.codeinn.net/misctech/44276.html