当前位置: 首页 > 编程笔记 >

Android圆角按钮的制作方法

充鑫鹏
2023-03-14
本文向大家介绍Android圆角按钮的制作方法,包括了Android圆角按钮的制作方法的使用技巧和注意事项,需要的朋友参考一下

本文实例为大家分享了Android制作圆角按钮的具体代码,供大家参考,具体内容如下

【主要步骤】

创建一个XML文件

以此文件作为Button的Background

1.创建XML文件

在res目录下的drawable-mdpi下建立XML文件

button_frame_shape.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
  <solid android:color="#ffffff" /><!-- 填充的颜色 -->
  <!-- 设置按钮的四个角为弧形 -->
  <!-- android:radius 弧形的半径 -->
  <corners android:topLeftRadius="5dp"
    android:topRightRadius="5dp"
    android:bottomRightRadius="5dp"
    android:bottomLeftRadius="5dp"/>
  <!-- 边框粗细及颜色 -->
  <stroke android:width="2dp" android:color="@color/colorAccent" />
</shape>


2.使用

在Button下使用Android:background=”@drawable/button_frame_shape”

<?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"> 
<Button  
  android:id="@+id/roundButton" 
  android:text=" 圆角边框按钮 " 
  android:layout_width="wrap_content"  
  android:layout_height="wrap_content"  
  android:background="@drawable/button_frame_shape" 
  /> 
</LinearLayout>

效果如图:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持小牛知识库。

 类似资料:
  • 本文向大家介绍Android实现圆角Button按钮,包括了Android实现圆角Button按钮的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了Android开发圆角Button按钮实现过程,分享给大家供大家参考,具体内容如下 需求及效果图: 实现思路: 1、shape实现圆角 在drawable新建两个xml 文件, 这两个 xml文件用shape 实现了圆角效果。 Note: 因为要

  • 我正在使用圆形按钮,我想在里面有一个图像。问题是图像在中心,而不是在左边,即使调用 loadButton.setAlignment(Pos.BASELINE_LEFT); 我得到的是上面的按钮,我需要的是下面的按钮。你知道在圆角下显示png的方法吗? 非常感谢!

  • 本文向大家介绍Android中快速便捷的实现圆角按钮方法详解,包括了Android中快速便捷的实现圆角按钮方法详解的使用技巧和注意事项,需要的朋友参考一下 前言 大家应该都知道,圆角按钮是我们在做界面时常常遇到的UI样式。通常的办法,是做一个drawable,比如这样: 在Layout文件里Button的background属性设上这个drawable.xml,就可以了。 然而这样做的话,每次弄个

  • 那么,有人将如何实现android L中显示的圆形按钮呢?还有什么是循环按钮的技术名称,XML代码将被赞赏。