給textview設置四周邊框和底部邊框

設置四周邊框

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

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章