亲宝软件园·资讯

展开

Android TextView设置背景色与边框 Android TextView设置背景色与边框的方法详解

人气:0
想了解Android TextView设置背景色与边框的方法详解的相关内容吗,在本文为您仔细讲解Android TextView设置背景色与边框的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点: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"

加载全部内容

相关教程
猜你喜欢
用户评论