android 设置资源,Android 资源

Android 资源Android Resources

02/01/2018

本文内容

本文介绍了 Xamarin 中 Android 资源的概念,并介绍了如何使用这些资源。其中介绍了如何使用 Android 应用程序中的资源来支持应用程序本地化和多个设备,包括不同的屏幕大小和密度。This article introduces the concept of Android resources in Xamarin.Android and will document how to use them. It covers how to use resources in your Android application to support application localization, and multiple devices including varying screen sizes and densities.

概述Overview

Android 应用程序很少只是源代码。An Android application is seldom just source code. 通常有许多其他文件组成应用程序:视频、图像、字体和音频文件。There are often many other files that make up an application: video, images, fonts, and audio files just to name a few. 这些非源代码文件统称为资源,并在生成过程中进行编译,并打包为 APK 以便分发和安装到设备上:Collectively, these non-source code files are referred to as resources and are compiled (along with the source code) during the build process and packaged as an APK for distribution and installation onto devices:

7bf41b9cb1e65f196fd2a61d4632346e.png

资源为 Android 应用程序提供了若干优点:Resources offer several advantages to an Android application:

代码分离– 将源代码与图像、字符串、菜单、动画、颜色等分隔开来。当本地化时,此类资源可以很大的帮助。Code-Separation – Separates source code from images, strings, menus, animations, colors, etc. As such resources can help considerably when localizing.

面向多个设备– 提供对不同设备配置的更简单支持,而无需更改代码。Target multiple devices – Provides simpler support of different device configurations without code changes.

编译时检查– 资源是静态的,并编译到应用程序中。Compile-time Checking – Resources are static and compiled into the application. 这允许在编译时检查资源的使用情况,在这种情况下,可以轻松地捕获和更正错误,而不是在更难找到且更昂贵的时候运行。This allows the usage of the resources to be checked at compile time, when it will be easy to catch and correct the mistakes, as opposed to run-time when it is more difficult to locate and costly to correct.

当启动新的 Xamarin Android 项目时,将创建一个名为 "资源" 的特殊目录以及一些子目录:When a new Xamarin.Android project is started, a special directory called Resources is created, along with some subdirectories:

78004ea1df635c9b51ccd341fc85eec0.png

在上面的图像中,应用程序资源根据其类型组织到这些子目录中:图像将进入可绘制目录;视图位于布局子目录中,等等。In the image above, the application resources are organized according to their type into these subdirectories: images will go in the drawable directory; views go in the layout subdirectory, etc.

f5322e9c012490423b02811e0714b796.png

在上面的图像中,应用程序资源根据其类型组织到这些子目录中:图像将进入mipmap目录;视图位于布局子目录中,等等。In the image above, the application resources are organized according to their type into these subdirectories: images will go in the mipmap directory; views go in the layout subdirectory, etc.

可以通过两种方法在 Xamarin Android 应用程序中访问这些资源:以编程方式在代码中,并使用特殊的 xml 语法在 XML 中以声明方式。There are two ways to access these resources in a Xamarin.Android application: programmatically in code and declaratively in XML using a special XML syntax.

这些资源称为 "默认资源",并由所有设备使用,除非指定了更具体的匹配项。These resources are called Default Resources and are used by all devices unless a more specific match is specified. 此外,每种类型的资源可能有可选的备用资源,Android 可能会使用这些资源来定位特定设备。Additionally, every type of resource may optionally have Alternate Resources that Android may use to target specific devices. 例如,可能会提供资源以面向用户的区域设置、屏幕大小,或者设备是否旋转了90度(从纵向到横向)等。在上述每种情况下,Android 都将加载用于应用程序的资源,而无需开发人员进行任何额外的编码工作。For example, resources may be provided to target the user's locale, the screen size, or if the device is rotated 90 degrees from portrait to landscape, etc. In each of these cases, Android will load the resources for use by the application without any extra coding effort by the developer.

通过向包含给定资源类型的目录的末尾添加一个名为限定符的短字符串来指定备用资源。Alternate resources are specified by adding a short string, called a qualifier, to the end of the directory holding a given type of resources.

例如,资源/可绘制的 de将为设置为德语区域设置的设备指定映像,而资源/可绘制的将为设置为法语区域设置的设备保留图像。For example, resources/drawable-de will specify the images for devices that are set to a German locale, while resources/drawable-fr would hold images for devices set to a French locale. 在下图中,提供备用资源的示例如下所示:在运行同一应用程序时,只需更改设备区域设置:An example of providing alternate resources can be seen in the image below where the same application is being run with just the locale of the device changing:

35f182da7fd73744c3f731de9d2dd975.png

本文全面介绍了如何使用资源,并涵盖了以下主题:This article will take a comprehensive look at using resources and cover the following topics:

Android 资源基础知识– 以编程方式使用默认资源,并以声明方式向应用程序添加资源类型(如图像和字体)。Android Resource Basics – Using default resources programmatically and declaratively, adding resource types such as images and fonts to an application.

设备特定配置– 支持应用程序中的不同屏幕分辨率和密度。Device Specific Configurations – Supporting the different screen resolutions and densities in an application.

本地化– 使用资源来支持应用程序可使用的不同区域。Localization – Using resources to support the different regions an application may be used.

相关链接Related Links

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/346211.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

zbrush常用笔刷_ZBrush中常用笔刷综合简介

单击左托盘的笔刷图标,弹出一个笔刷库,其中有许多常用笔刷,这也是许多初学者所头疼的问题,ZBrush的笔刷非常多,而且功能很强大,好多朋友不知道该选择哪一个笔刷进行雕刻。其实,在ZBrush的学习中…

spring java配置_Spring:使基于Java的配置更加优雅

spring java配置大家好,我很久没有写新文章了。 积累了很多资料,需要在不久的将来在我的博客中发布。 但是现在我想谈谈Spring MVC应用程序配置。 确切地说,我想谈谈基于Java的Spring配置。 尽管在3.0版本中引入了基于Spring java的配置&…

android封装oauth2,Android AccountAuthenticator和OAuth2

这肯定是可行的。来自Android AccountManager文档:Many servers support some notion of an authentication token, which canbe used to authenticate a request to the server without sending theusers actual password. (Auth tokens are normally created with…

php redis 队列抢红包_php+redis实现消息队列

消息队列:是在消息的传输过程中保存消息的容器。消息队列管理器在将消息从它的源中继到它的目标时充当中间人。队列的主要目的是提供路由并保证消息的传递;如果发送消息时接收者不可用,消息队列会保留消息,直到可以成功地传递它应…

使用Spring Security在Spring Boot中进行缓存

在这篇文章中,我想分享一下O&B的一个团队的经验教训。 他们正在使用带有Spring Security的Spring Boot。 默认情况下,Spring Security保护的所有内容都将通过以下HTTP标头发送到浏览器: Cache-Control: no-cache, no-store, max…

wifi定位算法android,WIFI定位算法

网络定位指通过周边wifi列表、基站列表、IP地址等信息确定用户位置的过程。 我们采集的训练数据是每个GPS坐标位置和对应的Wifi和基站列表。 其中每个Wifi和基站有唯一的Mac地址作为ID和信号强度。有三种定位方法:均值法首先估计一个wifi的中心点位置,可…

仿小黄车android定位,小黄车ofo是怎么实现自行车定位功能的?

摩拜单车通过车身携带的GPS而实现单车定位,但是我们知道ofo是没有安装GPS,它又是如何实现单车定位的呢?我居住的地方距离地铁站步行大约15分钟左右,距离最近的商场步行将近30分钟,距离周边的便利店,水果店,饭店等步行1…

python苹果下载软件助手哪个好_Mac上有什么实用的必备软件?

Mac上的一些软件真的超好用,比如...每天依据时间变化的壁纸,看清晨、看夕阳我是 Super叔 ,关注了就是好朋友,这里说明下还是,软件只是工具,初衷是为了方便自己提高效率,别为了去模仿所谓某某软件可以怎么怎么复杂的,用得多么炫酷好用,而去花非常多精力为…

hibernate 刷新_Hibernate事实:了解刷新操作顺序很重要

hibernate 刷新Hibernate将开发人员的思维方式从思考SQL转变为思考对象状态转换。 根据Hibernate Docs,实体可能处于以下状态之一: new / transient:实体不与持久性上下文相关联,因为它是数据库不知道的新创建的对象。 持久性&a…

android变量要不要附空值,android-如何在使用Parcelable时序列化空值

我见过的大多数序列化代码都使用两个标志来指示值的存在/不存在,或者在值前加上一个计数字段(例如,在编写数组时),如果该值不等于,则计数字段仅设置为零。 根本不存在。检查Android核心类的源代码会发现以下代码(来自Message类)&a…

gprs连接中断记录_请收好!脉搏波血压计连接天天血压APP使用指南

总有那么几个粗心的小伙伴丢失了说明书,在后台追问波哥如何连接“天天血压”,于是给大家安排了这篇使用指南。首先我们来了解下“天天血压”的功能:1.通过蓝牙或GPRS传输,同步记录每次测量结果;2. 血压趋势分析&#x…

使用Spring Boot,JHipster和React构建照片库PWA

“我喜欢编写身份验证和授权代码。” 〜从来没有Java开发人员。 厌倦了一次又一次地建立相同的登录屏幕? 尝试使用Okta API进行托管身份验证,授权和多因素身份验证。 从本质上讲,React只是一个UI工具包,即ala GWT,但是…

html5画布funcition,2020前端基础知识学习第一节(示例代码)

一、选择题1. 浏览器端的存储技术有哪些()A.cookie  B.localStorage  C.session  D.userData答案:A B D分析:cookie通常用于存储用户等登录信息,能够存储的数据是有限的,而且在指定域名下所有的请求都会带上。localStoage是…

names文件和data文件_data.table让你的读取速度提升百倍

不知道大家有没有用read.table和read.csv读取过文件,当文件不大的时候你可能还感觉不出读取速度,但是当文件比较大的时候,比如有上万行的时候,你就会感觉到等待时间明显变长,甚至无法忍受。今天小编给大家安利一个实用…

差分放大电路差模共模公式_提高差分放大器的共模抑制比,电阻的选择很关键...

在各种应用领域,采用模拟技术时都需要使用差分放大器电路。例如测量技术,根据其应用的不同,可能需要极高的测量精度。为了达到这一精度,尽可能减少典型误差源(例如失调和增益误差,以及噪声、容差和漂移)至关重要。为此…

计算机网络的含义是什么意思,互联网的基本含义是什么

互联网大家都知道,但是互联网的基本含义都了解吗?学习啦小编为大家整理了相关内容,供大家参考阅读!互联网的基本含义互联网是由一些使用公用语言互相通信的计算机连接而成的网络,即广域网、局域网及单机按照一定的通讯协议组成的国际计算机网…

在单个try-with-resources语句中仔细指定多个资源

Java 7更有用的新功能之一是引入了try-with-resources语句 [AKA 自动资源管理 ( ARM )]。 try-with-resources语句的吸引力在于其承诺 “确保在语句末尾关闭每个资源”。 在这种情况下,“资源”是实现AutoCloseable及其close(&…

两轮差速机器人舵机转轴示意图_机器人教程2:舵机及转向控制原理

图3舵机外形图2、舵机的组成一般来讲,舵机主要由以下几个部分组成,舵盘、减速齿轮组、位置反馈电位计、直流电机、控制电路等,如图4、图5所示。图4舵机的组成示意图图5舵机组成舵机的输入线共有三条,如图6所示,红色中间…

label标签 html5,HTML5 label 标签

实例HTML5 标签用于为 input 元素做出标记。带有两个输入字段和相关标记的简单 HTML 表单:MaleFemale尝试一下 浏览器支持目前大多数浏览器支持 标签。标签定义及使用说明标签为 input 元素定义标注(标记)。label 元素不会向用户呈现任何特殊效果。不过,…

me shy是什么歌 抖音make_抖音星河滚烫你是人间的理想下一句是什么歌 星河歌词完整版...

最近在抖音上听到一段话,这段话的开头是“星河滚烫,你是人间的理想……”。抖音星河滚烫你是人间的理想下一句是什么歌?星河歌词介绍?星河,是非常好听的一首歌曲,是很多人都喜欢的一首歌曲。抖音星河滚烫你…