服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Android - Android TextView设置背景色与边框的方法详解

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

2021-01-28 15:33Android开发网 Android

本篇文章是对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"


延伸 · 阅读

精彩推荐