如何使按钮的角变圆?


456

我想打个button圆角。有没有简单的方法可以在Android中实现这一目标?




11
这不是一个广泛的问题,绝对是关键。将其标记为“太宽泛”只是一种SO思维,需要改变。不再是独裁者。
user734028

2
同意user734028:太广泛了,怎么关闭?如果OP询问如何将转角半径设置为N个像素,则这可能更具体。来吧!
nyholku

Answers:


679

如果你想要这样的东西

按钮预览

这是代码。

1.在您的可绘制文件夹(如mybutton.xml)中创建一个xml文件,并粘贴以下标记:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
    <item android:state_pressed="true" >
        <shape android:shape="rectangle"  >
            <corners android:radius="3dip" />
            <stroke android:width="1dip" android:color="#5e7974" />
            <gradient android:angle="-90" android:startColor="#345953" android:endColor="#689a92"  />            
        </shape>
    </item>
    <item android:state_focused="true">
        <shape android:shape="rectangle"  >
            <corners android:radius="3dip" />
            <stroke android:width="1dip" android:color="#5e7974" />
            <solid android:color="#58857e"/>       
        </shape>
    </item>  
    <item >
       <shape android:shape="rectangle"  >
            <corners android:radius="3dip" />
            <stroke android:width="1dip" android:color="#5e7974" />
            <gradient android:angle="-90" android:startColor="#8dbab3" android:endColor="#58857e" />            
       </shape>
    </item>
</selector>

2.现在将此可绘制对象用作视图的背景。如果视图是按钮,则如下所示:

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:padding="10dp"
    android:textColor="#ffffff"
    android:background="@drawable/mybutton"
    android:text="Buttons" />

坠毁:org.xmlpull.v1.XmlPullParserException::二进制XML文件行#24:致的<item>标签需要一个“可拉伸”属性或子代码中定义的可绘制
Zennichimaro

3
我们可以通过编程方式做到这一点吗?
杀手

它说元素选择器必须声明为EDIT:对不起,该文件位于values文件夹内,而不是可绘制文件内。当我转移它时,它起作用了。
F0r3v3r-A-N00b

是什么在点击时产生阴影?我正在尝试减小底部的阴影宽度...不走运
Neville Nazerane

我看不到显示选择器如何编码与解释按钮角应如何编码有什么关系。
TavernSenses

344

在如下所示的drawable文件夹中创建一个xml文件

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" android:padding="10dp">
    <!-- you can use any color you want I used here gray color-->
    <solid android:color="#ABABAB"/> 
    <corners android:radius="10dp"/>
</shape>

将此作为背景应用到您想要使圆角变圆的按钮上。

或者您可以为每个拐角使用单独的半径,如下所示

android:bottomRightRadius="10dp"
android:bottomLeftRadius="10dp"
android:topLeftRadius="10dp"
android:topRightRadius="10dp"

57
您可以将角点缩短到android:radius =“ 10dp”,这将适用于所有人
Ben Simpson

22
这不是一个完整的解决方案,因为它不支持各种按钮状态(按下,聚焦,默认)。有关更好的解决方案,请参见stackoverflow.com/questions/9334618/rounded-button-android
JosephL 2013年

3
@BenSimpson,您会发现,仅放置一条直线而不是分别定义每个拐角半径,形状就会有所不同。
加里马·蒂瓦里

这比突出显示的答案更完美。谢谢你一百万!
Dan Linh

37

创建一个如下所示的XML文件。将其设置为按钮的背景。如果需要为按钮添加更多曲线,请将半径属性更改为您想要的。

button_background.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <solid android:color="@color/primary" />
    <corners android:radius="5dp" />
</shape>

将背景设置为您的按钮:

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/button_background"/>

30

在可绘制文件夹中创建shape.xml

像shape.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
  <stroke android:width="2dp"
    android:color="#FFFFFF"/>
  <gradient 
    android:angle="225"
    android:startColor="#DD2ECCFA"
    android:endColor="#DD000000"/>
<corners
    android:bottomLeftRadius="7dp"
    android:bottomRightRadius="7dp"
    android:topLeftRadius="7dp"
   android:topRightRadius="7dp" />
</shape>

并在myactivity.xml中

您可以使用

<Button
    android:id="@+id/btn_Shap"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" 
    android:text="@string/Shape"
    android:background="@drawable/shape"/>

16

创建文件myButton.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="@color/colorButton"/>
    <corners android:radius="10dp"/>
</shape>

添加到您的按钮

 <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/myButton"/>

16

有没有一种简单的方法可以在Android中实现这一目标?

是的,今天有,而且非常简单。
只需MaterialButtonMaterial Components库中的app:cornerRadius属性一起使用。

就像是:

    <com.google.android.material.button.MaterialButton
        android:text="BUTTON"
        app:cornerRadius="8dp"
        ../>

在此处输入图片说明

获得具有圆角的Button就足够了。

您可以使用“材质”按钮样式之一。例如:

<com.google.android.material.button.MaterialButton
    style="@style/Widget.MaterialComponents.Button.OutlinedButton"
    .../>

在此处输入图片说明

同样从版本1.1.0开始,您还可以更改按钮的形状。只需使用shapeAppearanceOverlay按钮样式中的属性即可:

  <style name="MyButtonStyle" parent="Widget.MaterialComponents.Button">
    <item name="shapeAppearanceOverlay">@style/ShapeAppearanceOverlay.MyApp.Button.Rounded</item>
  </style>

  <style name="ShapeAppearanceOverlay.MyApp.Button.Rounded" parent="">
    <item name="cornerFamily">rounded</item>
    <item name="cornerSize">16dp</item>
  </style>

然后只需使用:

<com.google.android.material.button.MaterialButton
   style="@style/MyButtonStyle"
   .../>

您还可以shapeAppearanceOverlay在xml布局中应用:

<com.google.android.material.button.MaterialButton
   app:shapeAppearanceOverlay="@style/ShapeAppearanceOverlay.MyApp.Button.Rounded"
   .../>

shapeAppearance还允许有不同的形状和尺寸的每个角落:

<style name="ShapeAppearanceOverlay.MyApp.Button.Rounded" parent="">
    <item name="cornerFamily">rounded</item>
    <item name="cornerFamilyTopRight">cut</item>
    <item name="cornerFamilyBottomRight">cut</item>
    <item name="cornerSizeTopLeft">32dp</item>
    <item name="cornerSizeBottomLeft">32dp</item>
</style>

在此处输入图片说明


它还需要使用Material主题
-Vlad

@Vlad是的,材料组件需要材料主题。
加布里埃尔·马里奥蒂

11

我发现的简单方法是在drawable文件夹中制作一个新的xml文件,然后将按钮背景指向该xml文件。这是我使用的代码:

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

<solid android:color="#ff8100"/>
<corners android:radius="5dp"/>

</shape>

3
要在自定义可绘制背景中还原“材质主题波纹”效果,请android:foreground="?attr/selectableItemBackground"在“按钮视图”中添加。见stackoverflow.com/questions/38327188/...
MR-IDE

11

在Drawable文件夹中创建rounded_btn.xml文件...

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"> 
     <solid android:color="@color/#FFFFFF"/>    

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

     <padding android:left="1dp"
         android:top="1dp"
         android:right="1dp"
         android:bottom="1dp"
         /> 

     <corners android:bottomRightRadius="5dip" android:bottomLeftRadius="5dip" 
         android:topLeftRadius="5dip" android:topRightRadius="5dip"/> 
  </shape>

并使用this.xml文件作为按钮背景

<Button
android:id="@+id/btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/rounded_btn"
android:text="Test" />

7

此链接包含您需要的所有信息。 这里

Shape.xml

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

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

    <corners    android:bottomLeftRadius="8dip"
                android:topRightRadius="8dip"
                android:topLeftRadius="1dip"
                android:bottomRightRadius="1dip"
                />
</shape>

和main.xml

<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent">

    <TextView   android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="Hello Android from NetBeans"/>

    <Button android:id="@+id/button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Nishant Nair"
            android:padding="5dip"
            android:layout_gravity="center"
            android:background="@drawable/button_shape"
            />
</LinearLayout>

这应该给您您想要的结果。

祝你好运


6

带有图标的样式按钮 在此处输入图片说明

   <Button
        android:id="@+id/buttonVisaProgress"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:layout_marginTop="5dp"
        android:background="@drawable/shape"
        android:onClick="visaProgress"
        android:drawableTop="@drawable/ic_1468863158_double_loop"
        android:padding="10dp"
        android:text="Visa Progress"
        android:textColor="@android:color/white" />

shape.xml

    <?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="14dp" />
<gradient
    android:angle="45"
    android:centerColor="#1FA8D1"
    android:centerX="35%"
    android:endColor="#060d96"
    android:startColor="#0e7e1d"
    android:type="linear" />
<padding
    android:bottom="0dp"
    android:left="0dp"
    android:right="0dp"
    android:top="0dp" />
<size
    android:width="270dp"
    android:height="60dp" />
<stroke
    android:width="3dp"
    android:color="#000000" />


4

如果使用矢量可绘制对象,则只需在可绘制定义中指定<corners>元素即可。我已经在博客文章中对此进行了介绍。

如果您使用的是位图/ 9色可绘制对象,则需要在位图图像中创建具有透明度的角。


0

可绘制文件夹

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <solid android:color="#FFFFFF"/>
    <corners android:radius="30dp"/>
    <stroke android:width="2dp" android:color="#999999"/>
</shape>

布局文件夹

<Button
    android:id="@+id/button2"
    <!-- add style to avoid square background -->
    style="@style/Widget.AppCompat.Button.Borderless"
    android:background="@drawable/corner_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    />

确保添加样式以避免方形背景

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.