XML Drawable 与9-Patches

2024-04-28 11:08
文章标签 xml drawable patches

本文主要是介绍XML Drawable 与9-Patches,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Android把任何可绘制在屏幕上的图形图像都称为drawable。drawable可以是一种抽象的图形、一个继承Drawable类的子类,或者是一张位图图像。接下来,我们将会接触到更多的drawable:state list drawable、shap drawable、layer list drawable以及nine patch drawable。前三个drawable通常定义在XML布局文件中,因此我们同一将他们归属为XMLdrawable类别。

一、Shap Drawable

原图如下:
这里写图片描述

设置按钮的背景

<style name="RemoteButton"><item name="android:layout_width">0dp</item><item name="android:layout_height">match_parent</item><item name="android:textColor">#556699</item><item name="android:textSize">20dp</item><item name="android:layout_margin">3dp</item><item name="android:background">#ccd7ee</item></style>

效果图如下:

这里写图片描述

在style中添加了android:background属性后,按钮的三维视觉效果消失了。点击任何一个按钮,会发现按钮的状态切换也不起作用了。

只改变一个属性,为什么会带来如此大的变化?这是因为,和View类不同,Button类没有被赋予默认样式。默认样式来自于所选主题,并会设置一个Drawable作为视图的背景。正是这种背景Drawable负责着视图的三维显示效果以及状态的切换。

在res/drawable目录下,以shape为根元素创建一个名为button_shape_normal.xml的文件。

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"android:shape="rectangle" ><corners android:radius="5dp" /><gradient
        android:angle="90"android:endColor="#cccccc"android:startColor="#acacac" /></shape>

该XML文件定义了一个圆角矩形。corners元素指定了圆角矩形的圆角半径,而gradient元素则指定了色彩渐变的方向以及起始颜色。

更新按钮的样式

<style name="RemoteButton"><item name="android:layout_width">0dp</item><item name="android:layout_height">match_parent</item><item name="android:textColor">#556699</item><item name="android:textSize">20dp</item><item name="android:layout_margin">3dp</item><item name="android:background">@drawable/button_shape_normal</item></style>

效果图如下
这里写图片描述

二、state list drawable

使用state list drawable,可根据关联View的不同状态显示不同的drawable。

在res/drawable目录下,以selector为根元素创建一个名为button_shape.xml的文件。

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android"><item android:drawable="@drawable/button_shape_pressed" android:state_pressed="true"></item><item android:drawable="@drawable/button_shape_normal" android:state_pressed="false"></item></selector>

更新按钮的样式

    <style name="RemoteButton"><item name="android:layout_width">0dp</item><item name="android:layout_height">match_parent</item><item name="android:textColor">@drawable/button_text_color</item><item name="android:textSize">20dp</item><item name="android:layout_margin">3dp</item><item name="android:background">@drawable/button_shape</item></style>

效果图如下
这里写图片描述

三、layer list drawable与 inset drawable

原图时按钮具有阴影显示效果,但不幸得是,shape drawable没有可用的阴影属性。但使用其它两种类型的XML drawable,可自创阴影效果。这两种XML drawable 类型分别是:layer list drawable与 inset drawable。

在res/drawable目录下,以layer-list为根元素创建一个名为button_shape_shadowed.xml的文件。

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" ><item><shape android:shape="rectangle" ><corners android:radius="5dp" /><gradient
                android:angle="90"android:centerColor="#303339"android:centerY="0.05"android:endColor="#000000"android:startColor="#00000000" /></shape></item><item><inset
            android:drawable="@drawable/button_shape"android:insetBottom="5dp" /></item></layer-list>

首先,使用与当前按钮drawable同样的shape创建一个阴影。然后,使用layer-list将阴影shape与当前按钮组合起来,在使用insert对按钮底边进行适当的短距移位,直到能够看到阴影显示。

可以看到,layer-list元素包含了多个drawable,并以从后至前的绘制顺序进行排序。列表中第二个drawable是一个insert drawable,其任务就是在已创建的drawable底部做5dp单位的移位,并刚好落在移位形成的阴影上。

注意,阴影drawable并未使用单独的文件,而是直接被嵌入了layer-list中。该技巧同样适用于其它drawable,如前面的state list drawable。

更新按钮的样式

<style name="RemoteButton"><item name="android:layout_width">0dp</item><item name="android:layout_height">match_parent</item><item name="android:textColor">@drawable/button_text_color</item><item name="android:textSize">20dp</item><item name="android:layout_margin">3dp</item><item name="android:background">@drawable/button_shape_shadowed</item></style>

效果图如下
这里写图片描述

四、9-patch drawable

为什么叫做9-patch?9-patch可将图像分成3x3的网格,即由9部分或9 patch组成的网格。网格角落的patch不会被缩放,边缘部分的4个patch只按一个维度缩放,而中间部分则同时按两个维度缩放。

这里写图片描述

9-patch图像和普通图像基本相同,但以下两点除外:9-patch图像文件名是以.9,png结尾,图像边缘具有一个像素宽度的边框,用以指定9-patch图像的中间位置。边框像素绘制为黑线,以表明中间位置,边缘部分则用透明色表示。

顶部以及左边边框标记了图像的可伸缩区域。底部以及右边框定义了用于9-patch图像的可选drawable区域。drawable区域是内容(通常是文字)绘制的地方。

这里写图片描述

代码地址

这篇关于XML Drawable 与9-Patches的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/943094

相关文章

intellij idea generatorConfig.xml

generatorConfig.xml <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE generatorConfigurationPUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN""http://mybatis.org/dtd/mybatis-ge

xml概论

以下内容摘录自W3School 一、XML的特性 xml是用来传输和存储数据的,本身对数据没有任何操作。在这里要区别一下html,html是用来显示数据的。xml的焦点是数据内容,html的焦点是数据外观。 下面是xml的定义: •XML 指可扩展标记语言(EXtensible Markup Language) •XML 是一种标记语言,很类似 HTML

XML的创建

这里使用的是org.dom4j的jar包来完成xml格式数据的创建。 import java.io.IOException;import java.io.StringWriter;import org.dom4j.Document;import org.dom4j.DocumentHelper;import org.dom4j.Element;import org.dom4j.

Spring下自定义xml标签

dubbo自定义了很多xml标签,例如<dubbo:application>,那么这些自定义标签是怎么与spring结合起来的呢?我们先看一个简单的例子。 一 编写模型类 1 package com.hulk.testdubbo.model;2 3 public class Hero {4 private String name;5 private int

xml reader

// TODO Auto-generated method stub

spring事务属性的xml格式配置

实际是使用代理做的事务优化 <!--配置事务的属性--><tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes> <!--匹配所有以add开头的方法--><tx:method name="add*" propagation="REQUIRED" /> <tx:metho

在struts.xml中,如何配置请求转发和请求重定向!

<span style="font-size:18px;"><span style="white-space:pre"> </span><!--<strong>下面用请求转发action </strong>,<strong>这样过去id不会丢</strong>,如果用重定向的话,id会丢 --><result name="updatePopedom"<span style="color:#ff00

xml数据作为表单参数在网络传递也需要用urlencode处理

xml数据作为表单参数在网络传递也需要用urlencode处理。才能确保数据被正确的传递和解析。需要加深对数据在web上传递的理解。

mybatis错误——java.io.IOException Could not find resource comxxxxxxMapper.xml

在学习Mybatis的时候,参考网上的教程进行简单demo的搭建,配置的没有问题,然后出现了下面的错误! Exception in thread "main" java.lang.RuntimeException: org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuration. Cause: