在android中使用drawable不会出现按钮边框

时间:2017-09-24 06:54:54

标签: android android-layout

我使用此代码为我的按钮布局添加边框,但按钮中没有出现任何更改。

button_bg.xml(绘制)

<shape xmlns:android="http://schemas.android.com/apk/res/android" 
    android:shape="rectangle" >
    <corners
        android:radius="14dp"
        />
    <solid
        android:color="#fff"
        />
    <stroke
        android:width="3px"
        android:color="#000"
        />
</shape>

布局

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

    <Button
        android:id="@+id/btnName"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="10dp"
        android:background="@drawable/button_bg"
        android:textColor="#000"
        android:text="@string/category_name" />
</RelativeLayout>

0 个答案:

没有答案