如何更改图层列表中的形状宽度?

时间:2013-08-06 06:11:25

标签: android android-drawable

我希望TextView周围的背景只有底部边框。为此,我使用的是layer-list。但我的问题是如何改变边框的大小。

这是我的图层清单          

    <item android:drawable="@drawable/category_border"/>
    <item
        android:bottom="3dp"
        android:drawable="@drawable/category_bg"
        android:left="0dp"
        android:right="0dp"
        android:top="0dp"/>

</layer-list> 

这是我的category_border.xml

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" 
    android:thickness="0.1dp">

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

</shape>

这是我的category_bg.xml

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >

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

</shape>

0 个答案:

没有答案