IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> Android-自定义图像资源的使用(1),androidstudio模拟器无响应 -> 正文阅读

[移动开发]Android-自定义图像资源的使用(1),androidstudio模拟器无响应

这个图像资源是使用标签的,这个标签下有很多属性,如下:

<?xml version="1.0" encoding="utf-8"?>

<bitmap

xmlns:android=“http://schemas.android.com/apk/res/android”

android:src="@[package:]drawable/drawable_resource"

android:antialias=[“true” | “false”]

android:dither=[“true” | “false”]

android:filter=[“true” | “false”]

android:gravity=[“top” | “bottom” | “left” | “right” | “center_vertical” |

“fill_vertical” | “center_horizontal” | “fill_horizontal” |

“center” | “fill” | “clip_vertical” | “clip_horizontal”]

android:mipMap=[“true” | “false”]

android:tileMode=[“disabled” | “clamp” | “repeat” | “mirror”] />

这里我不会给大家一个个介绍是什么意思,希望童鞋们自己去官网查看。

/05_KindOfDrawableUse/res/layout/xml_res.xml

<?xml version="1.0" encoding="utf-8"?>

<bitmap xmlns:android=“http://schemas.android.com/apk/res/android”

android:src="@drawable/logo"

android:tileMode=“repeat” >

这里用到一张图片,设置平铺模式为重复:

Nine-patch 图像资源的使用(重要)


.9图片老生常谈了,做Android开发的没用过这个工具那就太说不过去的,我们在应用开发当中,时刻需要对图片进行处理,为了让图片被拉伸的时候不会变形和扭曲,让图片边缘部分过渡得更加平滑自然。这就是draw9patch.bat这个工具的作用。

D:\software\adt-bundle-windows-x86_64-20131030\sdk\tools

在SDK中的tools目录下,就有Android提供的各种工具,童鞋们自己学着去使用吧,这个工具的使用这里小巫就不讲解了,需要学习的可以参考其他博主写的博文,百度、Google常伴你左右。

/05_KindOfDrawableUse/res/layout/ninepatch_res.xml

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android=“http://schemas.android.com/apk/res/android”

android:layout_width=“match_parent”

android:layout_height=“match_parent”

android:orientation=“vertical” >

<ImageView

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:background="@drawable/res" />

<ImageView

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:background="@drawable/res" />

<ImageView

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:background="@drawable/nine_patch" />

效果图如下:

XML Nine-Patch 图像资源的使用


这个资源,小巫没怎么用过,具体使用方法:

在drawable目录下,定义以下资源

/05_KindOfDrawableUse/res/drawable/xml_ninepatch.xml

<?xml version="1.0" encoding="utf-8"?>

<nine-patch xmlns:android=“http://schemas.android.com/apk/res/android”

android:dither=“false”

android:src="@drawable/nine_patch" >

这个资源的src是一张.9图片,不能使用普通的图片,不然会报错的哦。

在布局文件中使用:

/05_KindOfDrawableUse/res/layout/xml_ninepatch_res.xml

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android=“http://schemas.android.com/apk/res/android”

android:layout_width=“match_parent”

android:layout_height=“match_parent”

android:orientation=“vertical” >

<ImageView

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:background="@drawable/xml_ninepatch" />

效果图如下:

图层资源的使用


图层资源很容易理解,就类似FrameLayout,我们知道帧布局都是一层一层往上覆盖的,对吧。图层资源也是这样子滴,在drawable目录下,定义以下资源:

/05_KindOfDrawableUse/res/drawable/layers.xml

<?xml version="1.0" encoding="utf-8"?>

<bitmap

android:gravity=“center”

android:src="@drawable/logo" />

<item

android:left=“10dp”

android:top=“10dp”>

<bitmap

android:gravity=“center”

android:src="@drawable/logo" />

<item

本文在开源项目:Android开发不会这些?如何面试拿高薪! 中已收录,里面包含不同方向的自学编程路线、面试题集合/面经、及系列技术文章等,资源持续更新中…

<item

本文在开源项目:Android开发不会这些?如何面试拿高薪! 中已收录,里面包含不同方向的自学编程路线、面试题集合/面经、及系列技术文章等,资源持续更新中…

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2022-02-06 13:56:30  更:2022-02-06 13:58:05 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 14:22:04-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码