renwuzaishaoshi
 

textview加边框

 

方法一:

 

比较土  ,加背景图片,透明的带边框的背景图片

设置到android:background就可以

 

方法二:

 

刚学到的

android:background的值是一个xml文件

 

yle="font-family: mceinline;">TextView的xml:

 

 

<TextView android:id="@+id/roomInfo"

android:layout_centerHorizontal="true" 

android:textSize="24dip" 

android:layout_height="wrap_content"

android:gravity="center" 

android:layout_alignParentRight="true" 

android:textColor="@color/solid_black" 

android:background="@drawable/setbar_bg" 

android:layout_marginLeft="10dip" 

android:layout_marginTop="5dip" 

android:layout_width="300dip">

</TextView>

 

 

setbar_bg.xml 放在drawable-hdpi文件夹下面

 

 

<?xml version="1.0" encoding="UTF-8"?>

<shape xmlns:android="http://schemas.android.com/apk/res/android"> 

    <solid android:color="#00000000"/>

    <stroke android:width="2dip" android:color="#ff000000" />

</shape>

分类:

技术点:

相关文章: