如何在android中添加边框到按钮

时间:2014-05-13 18:00:59

标签: android button imageview

您好我在按钮上覆盖了我的ImageView,但是当它们彼此如此接近时,您无法知道它是按钮,它只是一个大红色方块。我需要一种快速简便的方法来给我的按钮边框/边缘或其他东西,以便您可以看到不同的按钮。

2 个答案:

答案 0 :(得分:3)

在可绘制资源中创建一个形状

<shape xmlns:android="http://schemas.android.com/apk/res/android" >
   <solid android:color="#C0213A" />`<!--Background Color-->`
   <stroke android:width="2dip" android:color="#C0213A"/> `<!--Border-->`
</shape>

在您的XML

<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="15dp"
android:background="@drawable/your_shape"> `<!--This is your shape created--`>

答案 1 :(得分:2)

按钮没有边框,但您可以使用shape来制作带边框的drawable,然后将其作为按钮的背景。

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

    <solid android:color="@color/red" />

    <stroke
        android:width="1dp"
        android:color="@color/black" />

</shape>