我想在布局文件中添加标签边框

时间:2017-11-14 08:47:44

标签: android android-layout label

我想让标签看起来完全像

enter image description here

iphone按钮。

在我的情况下,我想显示Active但我想要像给定图像一样的标签边框。 需要XML代码。

1 个答案:

答案 0 :(得分:1)

在drawable文件夹中创建button_background.xml并粘贴此代码

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

        <padding android:left="10dip" android:right="10dip" android:top="5dip" android:bottom="5dip"/>
        <corners android:bottomRightRadius="5dp" android:bottomLeftRadius="5dp" 
                android:topLeftRadius="5dp" android:topRightRadius="5dp"/> 

        <solid 
            android:color="#f5f5f5"/>
        <stroke android:width="2dp" android:color="#42A5F5"/>
    </shape>
</item>