Android TextView设置背景色与边框的方法详解
作者:
本篇文章是对Android中TextView设置背景色与边框的方法进行了详细的分析介绍,需要的朋友参考下
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 TextView设置中文字体加粗实现方法
- Android编程开发之TextView文字显示和修改方法(附TextView属性介绍)
- Android TextView字体颜色设置方法小结
- android实现上下滚动的TextView
- android TextView多行文本(超过3行)使用ellipsize属性无效问题的解决方法
- android TextView不用ScrollViewe也可以滚动的方法
- Android设置TextView显示指定个数字符,超过部分显示...(省略号)的方法
- Android中TextView显示圆圈背景或设置圆角的方法
- Android中TextView实现分段显示不同颜色的字符串
- Android 妙用TextView实现左边文字,右边图片