Android使用 Shape 画边框线
1、布局
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:Android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="#FFFFFF" android:orientation="vertical" > <!-- 表格布局 --> <TableLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:padding="10dip" > <!-- 表格布局:第一行 --> <TableRow android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@drawable/shape_top_corner_no_bottom_line" android:padding="10dip" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_vertical" android:layout_marginRight="10dip" android:text="姓名:" > </TextView> <EditText android:id="@+id/bankingYourNameEditText" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_vertical" android:layout_weight="1" android:background="@null" android:singleLine="true" > </EditText> </TableRow> <!-- 表格布局:第二行 --> <TableRow android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@drawable/shape_no_corner_without_bottom" android:padding="10dip" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_vertical" android:layout_marginRight="10dip" android:text="联系电话:" > </TextView> <EditText android:id="@+id/bankingContactTelEditText" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_vertical" android:layout_weight="1" android:background="@null" android:inputType="phone" android:singleLine="true" > </EditText> </TableRow> <!-- 表格布局:第三行 --> <TableRow android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@drawable/shape_bottom_corner_no_top_line" android:padding="10dip" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_vertical" android:layout_marginRight="10dip" android:text="联系电话:" > </TextView> <EditText android:id="@+id/bankingContactTelEditText" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_vertical" android:layout_weight="1" android:background="@null" android:inputType="phone" android:singleLine="true" > </EditText> </TableRow> </TableLayout> <Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:text="Button" /> </LinearLayout>
2、表格布局中每个TableRow表示一行,TableRow中的每个基本控件都是一列,这是一个三行两列的布局
这里的表格背景是自定义的shape,下面分别看一下三个shape的代码。
shape_top_corner_no_bottom_line.xml文件:顶部带圆角 白色背景 灰色边框 无下边框 长方体
<?xml version="1.0" encoding="UTF-8"?> <!-- 顶部带圆角 白色背景 灰色边框 无下边框 长方体 --> <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <item> <shape> <solid android:color="#FFFFFF" /> <corners android:topLeftRadius="10dp" android:topRightRadius="10dp" android:bottomRightRadius="0.1dp" android:bottomLeftRadius="0.1dp" /> <stroke android:width="1dp" android:color="#ffa8abad" /> </shape> </item> <item android:top="1dp" android:left="1dp" android:right="1dp"> <shape> <solid android:color="#FFFFFF" /> <corners android:topLeftRadius="10dp" android:topRightRadius="10dp" android:bottomRightRadius="0.1dp" android:bottomLeftRadius="0.1dp" /> <stroke android:width="1dp" android:color="#ffffffff" /> </shape> </item> </layer-list>
3、shape_no_corner_without_bottom.xml文件:不带圆角 白色背景 灰色边框 无下边框 长方体
<?xml version="1.0" encoding="UTF-8"?> <!-- 不带圆角 白色背景 灰色边框 无下边框 长方体 --> <layer-list xmlns:android="http://schemas.android.com/apk/res/android" > <item> <shape> <solid android:color="#FFFFFF" /> <stroke android:width="1dp" android:color="#ffa8abad" /> </shape> </item> <item android:left="1dp" android:right="1dp" android:top="1dp"> <shape> <solid android:color="#FFFFFF" /> <stroke android:width="1dp" android:color="#ffffffff" /> </shape> </item> </layer-list>
4、shape_bottom_corner_no_top_line.xml文件:底部圆角 白色背景 灰色边框 长方体
<?xml version="1.0" encoding="UTF-8"?> <!-- 底部圆角 白色背景 灰色边框 长方体 --> <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <item> <shape> <solid android:color="#FFFFFF" /> <corners android:topLeftRadius="0.1dp" android:topRightRadius="0.1dp" android:bottomRightRadius="10dp" android:bottomLeftRadius="10dp" /> <stroke android:width="1dp" android:color="#ffa8abad" /> </shape> </item> <item android:top="1dp" android:bottom="1dp" android:left="1dp" android:right="1dp"> <shape> <solid android:color="#FFFFFF" /> <corners android:topLeftRadius="0.1dp" android:topRightRadius="0.1dp" android:bottomRightRadius="10dp" android:bottomLeftRadius="10dp" /> <stroke android:width="1dp" android:color="#ffffffff" /> </shape> </item> </layer-list>
5、说明:
shape_top_corner_no_bottom_line.xml
shape_no_corner_without_bottom.xml
shape_bottom_corner_no_top_line.xml
以上三个文件都存放在 drawable 中。
6、效果图查看附件。
文章引自:http://www.linuxidc.com/Linux/2012-09/70661.htm
相关推荐
首先,在res下面新建一个文件夹drawable,在drawable下面新建三个xml文件:shape_corner_down.xml、shape_corner_up.xml和shape_corner.xml,分别是下面两个角是圆角边框,上面两个角是圆角边框,四个角全部是圆角...
在Android开发中,Shape是XML绘图的一种方式,它允许开发者自定义视图的背景,包括设置圆角、颜色、边框等属性。本篇文章将深入探讨如何利用Shape来实现控件的圆角、背景以及边框效果。 一、Shape的基本结构 Shape...
本教程将深入探讨如何在Android中使用Shape来实现自定义形状。 1. **Shape基本结构** Shape对象的基本结构包含以下几个主要元素: - `<shape>`:根元素,定义形状类型,如`<rectangle>`(矩形)、`<oval>`(椭圆...
要实现圆角边框布局效果,需要使用shape drawable来绘制圆角边框。shape drawable是一种特殊的drawable,用于绘制各种形状的边框。在Android中,可以使用XML文件来定义shape drawable。 例如,下面是一个简单的...
在布局XML文件中,可以使用`CardView`或`LinearLayout`等容器,并为其添加`android:background`属性,设置一个带有圆角的`shape drawable`。例如: ```xml <androidx.cardview.widget.CardView android:layout_...
在实际项目中,可以考虑使用现有的开源库,如`android-shape-imageview`或`CardView`,它们已经实现了圆角效果,可以简化开发过程。当然,自定义布局可以提供更大的灵活性,以满足特定的UI需求。 总结,创建Android...
综上所述,实现"圆形,圆角,带边框的圆形imageView,以及白色边框的圆形imageview"主要依赖于对Android Shape Drawable的理解和灵活运用,或者利用现有的库。通过自定义View或使用第三方库,开发者可以轻松地创建出...
本文将深入探讨如何在Android中实现ListView的边框圆角美化,以此来达到类似iPhone界面的视觉效果。 首先,我们需要理解ListView的基本结构。ListView是由多个View(通常是ListView项布局,即Item Layout)组成的,...
我们需要设置`android:background`属性为一个自定义的Shape Drawable,用于绘制圆形或圆角矩形的边框。以下是一个基本的示例: ```xml <merge xmlns:android="http://schemas.android.com/apk/res/android"> ...
在Android开发中,Shape是XML资源文件中定义的一种图形元素,它可以用来创建各种形状,如矩形、椭圆、线和路径,同时支持自定义样式,包括圆角、虚线边框、部分圆角以及颜色的渐变效果。这篇内容将深入探讨Android ...
在Android开发中,Shape标签是XML绘图API的一部分,它允许开发者创建自定义形状,用于绘制背景、按钮、边框等界面元素。Shape标签的强大之处在于它可以定义多种形状,包括矩形、椭圆、线和路径,从而实现丰富的界面...
创建的Shape文件通常保存在`res/drawable`目录下,然后在布局文件中通过`android:background="@drawable/your_shape"`引用,或者在代码中使用`ContextCompat.getDrawable()`加载。此外,Shape还可以与其他Drawable...
你可以创建不同的Shape资源文件,然后在代码中根据需要切换,或者使用`android:tint`属性为Shape设置颜色过滤器,实现颜色变化。 优化三:组合与复用 开发者可以通过组合多个Shape来创建更复杂的图形。例如,可以将...
2. **在布局中使用Shape**:在布局XML文件中引用这个Shape作为背景,如`android:background="@drawable/custom_shape"`。 3. **获取Shape引用**:在Activity或Fragment中,通过`findViewById`获取使用了Shape的视图...
综上所述,Android开发者可以通过自定义`shape` XML资源文件轻松实现按钮的圆角、边框和渐变效果。这不仅可以增强用户界面的美观性,还能提供更好的用户体验。在实际开发中,可以根据项目需求进行各种组合和调整,...
今天,我们将介绍如何使用 Android Shape 实现阴影或模糊边效果。 首先,让我们来了解什么是 Android Shape。Android Shape 是一种使用 XML 文件来定义视图外观的方式。它可以用来定义视图的背景、边框、圆角、阴影...
总之,“带边框有圆角的渐变布局”是通过组合使用Android的`Drawable`资源、自定义视图和绘图API实现的。这个过程涉及对Android图形系统、布局管理以及视图绘制的深入理解。通过熟练掌握这些知识点,开发者可以创建...
在Android开发中,实现圆角图片以及自定义边框颜色和大小的需求是非常常见的。这个压缩包文件"CircleImageView-master"很可能包含一个自定义的CircleImageView类,它扩展了Android原生的ImageView,提供了圆形显示...