Android-按钮边框


Answers:


431

步骤1:创建名为:my_button_bg.xml的文件

步骤2:将此文件放置在res / drawables.xml中

步骤3:插入以下代码

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
  android:shape="rectangle">
  <gradient android:startColor="#FFFFFF" 
    android:endColor="#00FF00"
    android:angle="270" />
  <corners android:radius="3dp" />
  <stroke android:width="5px" android:color="#000000" />
</shape>

步骤4:在需要的地方使用代码“ android:background =“ @ drawable / my_button_bg”,例如:

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Your Text"
    android:background="@drawable/my_button_bg"
    />

1
谢谢。+ 1。将其保存为xml文件到drawable文件夹后,我们如何使用它?
Android杀手

1
@AndroidPower你可以用R.drawable.FILE_NAME使用它
斯雷顿

2
在.axml代码中该按钮的标记在何处?是否放在styles.xml类型的文件中?
theJerm,2012年

我仅使用笔划(并将其设为白色)用白色勾勒出一个Button的轮廓。适用于4.4,但在4.0.3中按钮变黑-为什么有任何想法?
Kibi 2014年

1
@Kibi对不起有人修改了我的答案并给您不正确的建议。我已经更改了它,但令我震惊的是有人可以编辑一个可接受的答案并更改其有用性。
Pedantic

57

Android Official Solution

自从引入Android Design支持v28以来,使用即可轻松创建带边框的按钮MaterialButton。此类为构造函数中的按钮提供更新的Material样式。使用app:strokeColorapp:strokeWidth您可以创建自定义边框,如下所示:


1.使用时androidx

build.gradle

dependencies {
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'com.google.android.material:material:1.0.0'
}

•带边框的按钮:

<com.google.android.material.button.MaterialButton
    style="@style/Widget.AppCompat.Button.Colored"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="MATERIAL BUTTON"
    android:textSize="15sp"
    app:strokeColor="@color/green"
    app:strokeWidth="2dp" />

•未填充边框按钮:

<com.google.android.material.button.MaterialButton
    style="@style/Widget.AppCompat.Button.Borderless"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="UNFILLED MATERIAL BUTTON"
    android:textColor="@color/green"
    android:textSize="15sp"
    app:backgroundTint="@android:color/transparent"
    app:cornerRadius="8dp"
    app:rippleColor="#33AAAAAA"
    app:strokeColor="@color/green"
    app:strokeWidth="2dp" />



2.使用时appcompat

build.gradle

dependencies {
    implementation 'com.android.support:design:28.0.0'
}

style.xml

确保您的应用程序主题继承自Theme.MaterialComponents而不是Theme.AppCompat

<style name="AppTheme" parent="Theme.MaterialComponents.Light.DarkActionBar">
    <!-- Customize your theme here. -->
</style>

•带边框的按钮:

<android.support.design.button.MaterialButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="MATERIAL BUTTON"
    android:textSize="15sp"
    app:strokeColor="@color/green"
    app:strokeWidth="2dp" />

•未填充边框按钮:

<android.support.design.button.MaterialButton
    style="@style/Widget.AppCompat.Button.Borderless"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="UNFILLED MATERIAL BUTTON"
    android:textColor="@color/green"
    android:textSize="15sp"
    app:backgroundTint="@android:color/transparent"
    app:cornerRadius="8dp"
    app:rippleColor="#33AAAAAA"
    app:strokeColor="@color/green"
    app:strokeWidth="2dp" />



视觉结果

在此处输入图片说明


我看到您在按钮XML中声明了textColor和textSize。如果有人已经为textColor和textSize定义了样式,现在他们想添加,您该style="@style/Widget.AppCompat.Button.Borderless"怎么办?
某处某人


如您所述,可以定义从无边界样式继承的样式,然后根据基本样式添加首选属性。
Aminography'3

稍稍加班,但是GIF底部操作栏中有趣的第4个图标是什么?(而且看起来GIF是从真实设备中获取的,很酷)
i336_

1
也许我错了,但我在•未填边距按钮,我不得不改变,应用:backgroundTint =“@色/透明的”应用程序:backgroundTint =“@安卓:彩色/透明”
xarly

37

button_border.xml在您的可绘制文件夹中创建文件。

res / drawable / button_border.xml

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

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

    <stroke
        android:width="3dp"
        android:color="#FFFF4917" />

</shape>

并将按钮添加到XML活动布局并设置background android:background="@drawable/button_border"

        <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/button_border"
                android:text="Button Border" />

19

创建drawable / button_green.xml:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
  android:shape="rectangle">
  <gradient
    android:startColor="#003000"
    android:centerColor="#006000"
    android:endColor="#003000"
    android:angle="270" />
  <corners android:radius="5dp" />
  <stroke android:width="2px" android:color="#007000" />
</shape>

并指出为@drawable/button_green

<Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="10dp"
        android:background="@drawable/button_green"
        android:text="Button" />


8

如果按钮不需要透明的背景,则可以使用“框架布局”创建边框的错觉。只需调整FrameLayout的“ padding”属性即可更改边框的粗细。

<FrameLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:padding="1sp"
        android:background="#000000">
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Your text goes here"
            android:background="@color/white"
            android:textColor="@color/black"
            android:padding="10sp"
            />
</FrameLayout>

我不确定shape xml文件是否具有可动态编辑的边框颜色。但是我确实知道,使用此解决方案,您可以通过设置FrameLayout背景来动态更改边框的颜色。


6

在您的XML布局中:

<Button
    android:id="@+id/cancelskill"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_marginLeft="25dp"
    android:layout_weight="1"
    android:background="@drawable/button_border"
    android:padding="10dp"
    android:text="Cancel"
    android:textAllCaps="false"
    android:textColor="#ffffff"
    android:textSize="20dp" />

在drawable文件夹中,为按钮的边框样式创建一个文件:

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" >
    <stroke
        android:width="1dp"
        android:color="#f43f10" />
</shape>

在您的活动中:

    GradientDrawable gd1 = new GradientDrawable();
    gd1.setColor(0xFFF43F10); // Changes this drawbale to use a single color instead of a gradient
    gd1.setCornerRadius(5);
    gd1.setStroke(1, 0xFFF43F10);

    cancelskill.setBackgroundDrawable(gd1);

    cancelskill.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            cancelskill.setBackgroundColor(Color.parseColor("#ffffff"));
            cancelskill.setTextColor(Color.parseColor("#f43f10"));

            GradientDrawable gd = new GradientDrawable();

            gd.setColor(0xFFFFFFFF); // Changes this drawbale to use a single color instead of a gradient
            gd.setCornerRadius(5);
            gd.setStroke(1, 0xFFF43F10);
            cancelskill.setBackgroundDrawable(gd);

            finish();
        }
    });

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.