TextView四周边框和单边边框

来源:互联网 发布:小尺寸笔记本推荐知乎 编辑:程序博客网 时间:2024/04/30 14:19

设置四周边框

<?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>

 


只设置底部边框

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<!-- This is the main color -->
<item>
  <shape>
        <solid android:color="#ffa8abad" />
  </shape>
</item>
<!-- This is the line -->
<item android:bottom="2dp">
 <shape>
       <solid android:color="#FFFFFF" />
 </shape>
</item>
</layer-list>

0 0