Android TextView设置背景色与边框的方法详解
更新时间:2013年06月14日 16:56:54 作者:
本篇文章是对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实现左边文字,右边图片
相关文章
Android中使用IntentService创建后台服务实例
这篇文章主要介绍了Android中使用IntentService创建后台服务实例,IntentService提供了在单个后台线程运行操作的简单结构,需要的朋友可以参考下2014-06-06Android Studio3.6设置Gradle Offline Mode的方法
这篇文章主要介绍了Android Studio3.6设置Gradle Offline Mode的方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2020-03-03
最新评论