- 浏览: 578563 次
- 性别:
- 来自: 广州
文章分类
- 全部博客 (338)
- 已过时文章(留念用) (39)
- Android学习笔记 (30)
- Android开发指引自译 (100)
- Android NDK文档自译 (23)
- Android设计指引自译 (2)
- xp(ペケピー)&linux(理奈、铃)酱~ (4)
- ui酱&歌词自译~ (9)
- lua酱~ (9)
- 自我反省 (1)
- 羽game计划 (1)
- XSL酱 (2)
- java酱 (3)
- 设计的领悟 (58)
- 涂鸦作品(pixiv) (1)
- ruby酱 (2)
- Objective-C编程语言自译 (2)
- Android开发月报 (6)
- objc酱 (2)
- photoshop (3)
- js酱 (6)
- cpp酱 (8)
- antlr酱 (7)
- Lua 5.1参考手册自译 (11)
- 收藏品 (3)
- 待宵草计划 (4)
- 体验版截图 (1)
最新评论
-
naruto60:
太给力了!!!!我这网打不开Intel官网,多亏楼主贴了连接, ...
使用HAXM加速的Android x86模拟器(和一些问题) -
yangyile2011:
谢谢博主,翻译得很好哦
【翻译】(4)片段 -
ggwang:
牙痛的彼岸:痹!
牙痛的彼岸 -
ggwang:
总结得很简练清晰啊,学习了!
ANTLR学习笔记一:概念理解 -
leisurelife1990:
mk sdd
用git下载Android自带app的源代码
【翻译】(40)更多资源类型
see
http://developer.android.com/guide/topics/resources/more-resources.html
原文见
http://developer.android.com/guide/topics/resources/more-resources.html
-------------------------------
More Resource Types
更多资源类型
This page defines more types of resources you can externalize, including:
本页定义你可以外部化的更多资源类型,包括:
* Bool
* 布尔型
XML resource that carries a boolean value.
XML资源,携带一个布尔型值。
* Color
* 颜色
XML resource that carries a color value (a hexadecimal color).
XML资源,携带一个颜色值(一个十六进制颜色)
* Dimension
* 尺寸
XML resource that carries a dimension value (with a unit of measure).
XML资源,携带一个尺寸值(带有一个度量单位)。
* ID
* 标识符(注:ID是IDentity的英文缩写)
XML resource that provides a unique identifier for application resources and components.
XML资源,为应用程序资源和组件提供一个唯一标识符。
* Integer
* 整型
XML resource that carries an integer value.
XML资源,携带一个整型值。
* Integer Array
* 整型数组
XML resource that provides an array of integers.
XML资源,携带一个整型数组。
* Typed Array
* 带类型数组
XML resource that provides a TypedArray (which you can use for an array of drawables).
XML资源,提供一个TypedArray(你可以使用它作为一个可绘画对象的数组)。
-------------------------------
Bool
布尔型
A boolean value defined in XML.
一个定义在XML中的布尔型值。
-------------------------------
Note: A bool is a simple resource that is referenced using the value provided in the name attribute (not the name of the XML file). As such, you can combine bool resources with other simple resources in the one XML file, under one <resources> element.
注意:一个布尔型是一个简单资源,它使用name属性提供的值来引用(而非XML文件的名称)。因此,你可以组合布尔型资源和其它简单资源在一个XML文件中,放在一个<resources>元素下。
-------------------------------
* file location:
* 文件位置:
res/values/filename.xml
res/values/<文件名>.xml
The filename is arbitrary. The <bool> element's name will be used as the resource ID.
文件名是任意的。<bool>元素的名称将被用作资源ID。
* resource reference:
* 资源引用:
In Java: R.bool.bool_name
在Java中:R.bool.<布尔型名称>
In XML: @[package:]bool/bool_name
在XML中:@[<包名>:]bool/<布尔型名称>
* syntax:
* 语法:
-------------------------------
<?xml version="1.0" encoding="utf-8"?>
<resources>
<bool
name="bool_name"
>[true | false]</bool>
</resources>
-------------------------------
* elements:
* 元素:
* <resources>
Required. This must be the root node.
必需的。它必须是根节点。
No attributes.
无属性。
* <bool>
A boolean value: true or false.
一个布尔型:true或false。
* attributes:
* 属性:
* name
* 名称
String. A name for the bool value. This will be used as the resource ID.
字符串。布尔值的名称。它将被用作资源ID。
* example:
示例:
XML file saved at res/values-small/bools.xml:
保存为res/values-small/bools.xml的XML文件。
-------------------------------
<?xml version="1.0" encoding="utf-8"?>
<resources>
<bool name="screen_small">true</bool>
<bool name="adjust_view_bounds">true</bool>
</resources>
-------------------------------
This application code retrieves the boolean:
这段应用程序代码取出布尔型:
-------------------------------
Resources res = getResources();
boolean screenIsSmall = res.getBoolean(R.bool.screen_small);
-------------------------------
This layout XML uses the boolean for an attribute:
这个布局XML对一个属性使用布尔型:
-------------------------------
<ImageView
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:src="@drawable/logo"
android:adjustViewBounds="@bool/adjust_view_bounds" />
-------------------------------
-------------------------------
Color
颜色
A color value defined in XML. The color is specified with an RGB value and alpha channel. You can use a color resource any place that accepts a hexadecimal color value. You can also use a color resource when a drawable resource is expected in XML (for example, android:drawable="@color/green").
一个定义在XML中的颜色值。颜色用RGB值和透明通道指定。你可以在任意接受十六进制颜色值的地方使用一个颜色资源。你还可以在XML中期待一个可绘画对象资源时使用一个颜色资源,(例如,android:drawable="@color/green")。
The value always begins with a pound (#) character and then followed by the Alpha-Red-Green-Blue information in one of the following formats:
这个值总是以一个井号(#)字符开头,然后跟着的是依照以下形式之一的透明-红-绿-蓝信息。
* #RGB
* #ARGB
* #RRGGBB
* #AARRGGBB
-------------------------------
Note: A color is a simple resource that is referenced using the value provided in the name attribute (not the name of the XML file). As such, you can combine color resources with other simple resources in the one XML file, under one <resources> element.
注意:一个颜色是一个简单资源,它使用name属性提供的值来引用(而非XML文件的名称)。因此,你可以组合颜色资源和其它简单资源在一个XML文件中,放在一个<resources>元素下。
-------------------------------
* file location:
* 文件位置:
res/values/colors.xml
res/values/<颜色文件名>.xml
The filename is arbitrary. The <color> element's name will be used as the resource ID.
文件名是任意的。<color>元素的名称将被用作资源ID。
* resource reference:
* 资源引用:
In Java: R.color.color_name
在Java中:R.color.<颜色名称>
In XML: @[package:]color/color_name
在XML中:@[<包名>:]color/<颜色名称>
* syntax:
* 语法:
-------------------------------
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color
name="color_name"
>hex_color</color>
</resources>
-------------------------------
* elements:
* 元素:
* <resources>
Required. This must be the root node.
必需的。它必须是根节点。
No attributes.
无属性。
* <color>
A color expressed in hexadecimal, as described above.
一个以十六进制表示的颜色,正如上面描述的那样。
* attributes:
* 属性:
* name
String. A name for the color. This will be used as the resource ID.
字符串。颜色的名称。它将被用作资源ID。
* example:
* 示例:
XML file saved at res/values/colors.xml:
保存为res/values/colors.xml的XML文件:
-------------------------------
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="opaque_red">#f00</color>
<color name="translucent_red">#80ff0000</color>
</resources>
-------------------------------
This application code retrieves the color resource:
这段应用程序代码取出颜色资源:
-------------------------------
Resources res = getResources();
int color = res.getColor(R.color.opaque_red);
-------------------------------
This layout XML applies the color to an attribute:
这个布局XML应用颜色到一个属性:
-------------------------------
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="@color/translucent_red"
android:text="Hello"/>
-------------------------------
-------------------------------
Dimension
尺寸
A dimension value defined in XML. A dimension is specified with a number followed by a unit of measure. For example: 10px, 2in, 5sp. The following units of measure are supported by Android:
一个定义在XML中的尺寸值。一个尺寸用一个数字后跟一个度量单位来指定。例如:10px,2in,5sp。Android支持的后缀度量单位有:
* dp
Density-independent Pixels - an abstract unit that is based on the physical density of the screen. These units are relative to a 160 dpi (dots per inch) screen, so 160dp is always one inch regardless of the screen density. The ratio of dp-to-pixel will change with the screen density, but not necessarily in direct proportion. You should use these units when specifying view dimensions in your layout, so the UI properly scales to render at the same actual size on different screens. (The compiler accepts both "dip" and "dp", though "dp" is more consistent with "sp".)
密度无关像素——一个抽象的单位,它基于屏幕的物理密度。这些单位是相对于一个160 dpi(点每英寸)屏幕的,所以160dp总是一英寸,不管屏幕密度是什么。dp到像素的的比例将随屏幕密度而改变,但不一定是以直接的比例。你应该使用这些单位,当在你的布局中指定视图尺寸,所以用户界面会正确地缩放,在不同屏幕上以相同的实际大小来渲染。(编译器同时接受"dip"和"dp",虽然"dp"与"sp"更为一致。)
* sp
Scale-independent Pixels - this is like the dp unit, but it is also scaled by the user's font size preference. It is recommend you use this unit when specifying font sizes, so they will be adjusted for both the screen density and the user's preference.
缩放无关像素——它像dp单位,但它还被用户的字体大小预设(注:喜好)缩放。当指定字体大小时建议你使用这个单位,使它们将对于屏幕密度和用户的预设来调整。
* pt
Points - 1/72 of an inch based on the physical size of the screen.
点——一英寸的1/72,基于屏幕的物理大小。(注:大多数Android教材翻译为磅,“磅”是音译,常用于字体大小。详见http://en.wikipedia.org/wiki/Point_(typography)和中文维基)
* px
Pixels - corresponds to actual pixels on the screen. This unit of measure is not recommended because the actual representation can vary across devices; each devices may have a different number of pixels per inch and may have more or fewer total pixels available on the screen.
像素——对应于屏幕上的实际像素。不建议用这个度量单位,因为实际的呈现可能是跨设备不同的;每种设备每英寸可能有不同数量的像素,并且在屏幕上可能有较多或较少总数的可用像素。
* mm
Millimeters - based on the physical size of the screen.
毫米——基于屏幕的物理大小。
* in
Inches - based on the physical size of the screen.
英寸——基于屏幕的物理大小
-------------------------------
Note: A dimension is a simple resource that is referenced using the value provided in the name attribute (not the name of the XML file). As such, you can combine dimension resources with other simple resources in the one XML file, under one <resources> element.
注意:一个尺寸是一个简单值,它使用name属性提供的值来引用(而非XML文件的名称)。因此,你可以组合尺寸资源和其它简单资源在一个XML文件中,放在一个<resources>元素下。
-------------------------------
* file location:
* 文件位置:
res/values/filename.xml
res/values/<文件名>.xml
The filename is arbitrary. The <dimen> element's name will be used as the resource ID.
文件名是任意的。<dimen>元素的名称将被用作资源ID。
* resource reference:
* 资源引用:
In Java: R.dimen.dimension_name
在Java中:R.dimen.<尺寸名>
In XML: @[package:]dimen/dimension_name
在XML中:@[<包名>:]dimen/<尺寸名>
* syntax:
* 语法:
-------------------------------
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen
name="dimension_name"
>dimension</dimen>
</resources>
-------------------------------
* elements:
* 元素:
* <resources>
Required. This must be the root node.
必需的。它必须是根节点。
No attributes.
无属性。
* <dimen>
A dimension, represented by a float, followed by a unit of measurement (dp, sp, pt, px, mm, in), as described above.
一个尺寸值,用一个浮点值表示,后跟着一个度量单位(dp,sp,pt,px,mm,in),正如上面描述的那样。
* attributes:
* 属性:
* name
String. A name for the dimension. This will be used as the resource ID.
字符串。尺寸的名称,它将被用作资源ID。
* example:
* 示例:
XML file saved at res/values/dimens.xml:
保存为res/values/dimens.xml的XML文件:
-------------------------------
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="textview_height">25dp</dimen>
<dimen name="textview_width">150dp</dimen>
<dimen name="ball_radius">30dp</dimen>
<dimen name="font_size">16sp</dimen>
</resources>
-------------------------------
This application code retrieves a dimension:
这段应用程序代码取出一个尺寸:
-------------------------------
Resources res = getResources();
float fontSize = res.getDimension(R.dimen.font_size);
-------------------------------
This layout XML applies dimensions to attributes:
这个布局XML应用一些尺寸到属性上:
-------------------------------
<TextView
android:layout_height="@dimen/textview_height"
android:layout_width="@dimen/textview_width"
android:textSize="@dimen/font_size"/>
-------------------------------
-------------------------------
ID
标识符
A unique resource ID defined in XML. Using the name you provide in the <item> element, the Android developer tools create a unique integer in your project's R.java class, which you can use as an identifier for an application resources (for example, a View in your UI layout) or a unique integer for use in your application code (for example, as an ID for a dialog or a result code).
一个定义在XML中的唯一资源ID。使用你在<item>元素中提供的名称,Android开发者工具在你的工程的R.java类中创建一个唯一整数,你可以使用它作为一个应用程序资源的标识符(例如,你的用户界面布局中的一个View)或一个在你的应用程序代码中使用的唯一整型(例如,作为一个对话框的ID或一个结果代码)。
-------------------------------
Note: An ID is a simple resource that is referenced using the value provided in the name attribute (not the name of the XML file). As such, you can combine ID resources with other simple resources in the one XML file, under one <resources> element. Also, remember that an ID resources does not reference an actual resource item; it is simply a unique ID that you can attach to other resources or use as a unique integer in your application.
注意:一个ID是一个简单资源,它使用name属性提供的值来引用(而非XML文件的名称)。因此,你可以组合ID资源和其它简单资源在一个XML文件中,在<resources>元素下。同时,记住一个ID资源不引用一个实际的资源条目;它简单地是一个唯一ID,你可以把它依附到其它资源或在你的应用程序中使用它作为一个唯一整数。
-------------------------------
* file location:
* 文件位置:
res/values/filename.xml
res/values/<文件名>.xml
The filename is arbitrary.
文件名是任意的。
* resource reference:
* 资源引用:
In Java: R.id.name
在Java中:R.id.<名称>
In XML: @[package:]id/name
在XML中:@[<包名>:]id/<名称>
* syntax:
* 语法:
-------------------------------
<?xml version="1.0" encoding="utf-8"?>
<resources>
<item
type="id"
name="id_name" />
</resources>
-------------------------------
* elements:
* 元素:
* <resources>
Required. This must be the root node.
必需的。它必须是根节点。
No attributes.
无属性。
* <item>
Defines a unique ID. Takes no value, only attributes.
定义一个唯一ID。不带值,只有属性。
* attributes:
* 属性:
* type
Must be "id".
必须是"id"。
* name
String. A unique name for the ID.
字符串。ID的唯一名称。
* example:
* 示例:
XML file saved at res/values/ids.xml:
保存为res/values/ids.xml的XML文件:
-------------------------------
<?xml version="1.0" encoding="utf-8"?>
<resources>
<item type="id" name="button_ok" />
<item type="id" name="dialog_exit" />
</resources>
-------------------------------
Then, this layout snippet uses the "button_ok" ID for a Button widget:
然后,这个布局片段对一个Button部件使用"button_ok"这个ID。
-------------------------------
<Button android:id="@id/button_ok"
style="@style/button_style" />
-------------------------------
Notice that the android:id value does not include the plus sign in the ID reference, because the ID already exists, as defined in the ids.xml example above. (When you specify an ID to an XML resource using the plus sign—in the format android:id="@+id/name"—it means that the "name" ID does not exist and should be created.)
注意android:id值在ID引用中不包含加号,因为ID已经存在,正如上面的ids.xml示例中所定义的那样。(当你使用加号指定一个ID到一个XML资源时——以android:id="@+id/<名称>"的格式——它的意思是"<名称>"这个ID不存在,应该被创建。)
As another example, the following code snippet uses the "dialog_exit" ID as a unique identifier for a dialog:
作为另一个示例,以下代码片段使用"dialog_exit"这个ID作为一个对话框的唯一标识符:
-------------------------------
showDialog(R.id.dialog_exit);
-------------------------------
In the same application, the "dialog_exit" ID is compared when creating a dialog:
在同一个应用程序中,"dialog_exit"这个ID在创建一个对话框时被比较:
-------------------------------
protected Dialog onCreateDialog(int)(int id) {
Dialog dialog;
switch(id) {
case R.id.dialog_exit:
...
break;
default:
dialog = null;
}
return dialog;
}
-------------------------------
-------------------------------
Integer
整型
An integer defined in XML.
一个定义在XML中的整型。
-------------------------------
Note: An integer is a simple resource that is referenced using the value provided in the name attribute (not the name of the XML file). As such, you can combine integer resources with other simple resources in the one XML file, under one <resources> element.
注意:一个整型是一个简单资源,它使用name属性提供的值来引用(而非XML文件的名称)。因此,你可以组合整型资源和其它简单资源在一个XML文件中,放在一个<resources>元素中。
-------------------------------
* file location:
* 文件位置:
res/values/filename.xml
res/values/<文件名>.xml
The filename is arbitrary. The <integer> element's name will be used as the resource ID.
文件名是任意的。<integer>元素的名称将被用作资源ID。
* resource reference:
* 资源引用:
In Java: R.integer.integer_name
在Java中:R.integer.<整型名称>
In XML: @[package:]integer/integer_name
在XML中:@[<包名>:]integer/<整型名称>
* syntax:
* 语法:
-------------------------------
<?xml version="1.0" encoding="utf-8"?>
<resources>
<integer
name="integer_name"
>integer</integer>
</resources>
-------------------------------
* elements:
* 元素:
* <resources>
Required. This must be the root node.
必需的。它必须是根元素。
No attributes.
无属性。
* <integer>
An integer.
一个整型。
* attributes:
* 属性:
* name
String. A name for the integer. This will be used as the resource ID.
字符串。整型的名称。它必须被用作资源ID。
* example:
* 示例:
XML file saved at res/values/integers.xml:
保存为res/values/integers.xml的XML文件:
-------------------------------
<?xml version="1.0" encoding="utf-8"?>
<resources>
<integer name="max_speed">75</integer>
<integer name="min_speed">5</integer>
</resources>
-------------------------------
This application code retrieves an integer:
这段应用程序代码取出一个整型:
-------------------------------
Resources res = getResources();
int maxSpeed = res.getInteger(R.integer.max_speed);
-------------------------------
-------------------------------
Integer Array
整型数组
An array of integers defined in XML.
一个定义在XML中的整型数组。
-------------------------------
Note: An integer array is a simple resource that is referenced using the value provided in the name attribute (not the name of the XML file). As such, you can combine integer array resources with other simple resources in the one XML file, under one <resources> element.
注意:一个整型数组是一个简单资源,它使用name属性提供的值来引用(而非XML文件的名称)。因此。你可以组合整型数组和其它简单资源在一个XML文件中,放在一个<resources>元素下。
-------------------------------
* file location:
* 文件位置:
res/values/filename.xml
res/values/<文件名>.xml
The filename is arbitrary. The <integer-array> element's name will be used as the resource ID.
文件名是任意的。<integer-array>元素的名称将被用作资源ID。
* compiled resource datatype:
* 被编译的资源数据类型:
Resource pointer to an array of integers.
指向一个整型数组的资源指针。
* resource reference:
* 资源引用:
In Java: R.array.string_array_name
在Java中:R.array.<整型数组名称>(注:此处string_array_name疑有误,应作integer_array_name)
In XML: @[package:]array.integer_array_name
在XML中:@[<包名>:]array.<整型数组名称>
* syntax:
* 语法:
-------------------------------
<?xml version="1.0" encoding="utf-8"?>
<resources>
<integer-array
name="integer_array_name">
<item
>integer</item>
</integer-array>
</resources>
-------------------------------
* elements:
* 元素:
* <resources>
Required. This must be the root node.
必需的。它必须为根节点。
No attributes.
无属性。
* <string-array>
* <integer-array>(注:此处疑有误,应作<integer-array>)
Defines an array of integers. Contains one or more child <item> elements.
定义一个整型数组,包含一个或多个子<item>元素。
* attributes:
* 属性:
* android:name
String. A name for the array. This name will be used as the resource ID to reference the array.
字符串。数组的名称。这个名称将被用作资源ID来引用该数组。
* <item>
An integer. The value can be a referenced to another integer resource. Must be a child of a <integer-array> element.
一个整型。该值可以是一个指向另一个整型资源的引用。必须是<integer-array>的一个子元素。
No attributes.
无属性。
* example:
* 示例:
XML file saved at res/values/integers.xml:
保存为res/values/integers.xml的XML文件:
-------------------------------
<?xml version="1.0" encoding="utf-8"?>
<resources>
<integer-array name="bits">
<item>4</item>
<item>8</item>
<item>16</item>
<item>32</item>
</integer-array>
</resources>
-------------------------------
This application code retrieves the integer array:
这段应用程序代码取出整型数组:
-------------------------------
Resources res = getResources();
int[] bits = res.getIntArray(R.array.bits);
-------------------------------
-------------------------------
Typed Array
带类型的数组
A TypedArray defined in XML. You can use this to create an array of other resources, such as drawables. Note that the array is not required to be homogeneous, so you can create an array of mixed resource types, but you must be aware of what and where the data types are in the array so that you can properly obtain each item with the TypedArray's get...() methods.
一个定义在XML中的TypedArray。你可以使用它来创建其它资源的数组,诸如可绘画对象。注意数组不需要是同质的,所以你可以创建一个混合资源类型的数组,但你必须意识到在数组中数据类型是什么和在哪里,以使你可以用TypedArray的get...()方法正确地获取每个条目。
-------------------------------
Note: A typed array is a simple resource that is referenced using the value provided in the name attribute (not the name of the XML file). As such, you can combine typed array resources with other simple resources in the one XML file, under one <resources> element.
注意:一个带类型的数组是一个简单资源,它使用name属性提供的值来引用(而非XML文件的名称)。因此,你可以组合带类型的数组资源和其它简单资源在一个XML文件中,放在一个<resources>元素。
-------------------------------
* file location:
* 文件位置:
res/values/filename.xml
res/values/<文件名>.xml
The filename is arbitrary. The <array> element's name will be used as the resource ID.
文件名是任意的。<array>元素的名称将被用作资源ID。
* compiled resource datatype:
* 被编译的资源数据类型:
Resource pointer to a TypedArray.
指向一个TypedArray的资源指针。
* resource reference:
* 资源引用:
In Java: R.array.array_name
在Java中:R.array.<数组名称>
In XML: @[package:]array.array_name
在XML中:@[<包名>:]array.<数组名称>
* syntax:
* 语法:
-------------------------------
<?xml version="1.0" encoding="utf-8"?>
<resources>
<array
name="integer_array_name">
<item>resource</item>
</array>
</resources>
-------------------------------
* elements:
* 元素:
* <resources>
Required. This must be the root node.
必需的。它必须是根节点。
No attributes.
无属性。
* <array>
Defines an array. Contains one or more child <item> elements.
定义一个数组。包含一个或多个子<item>元素。
* attributes:
* 属性:
* android:name
String. A name for the array. This name will be used as the resource ID to reference the array.
字符串。数组的名称。这个名称将被用作资源ID以引用该数组。
* <item>
A generic resource. The value can be a reference to a resource or a simple data type. Must be a child of an <array> element.
一个泛型资源。值可以是指向一个资源的引用或一个简单数据类型。必须是一个<array>元素的子元素。
No attributes.
无属性。
* example:
* 示例:
XML file saved at res/values/arrays.xml:
保存为res/values/arrays.xml的XML文件:
-------------------------------
<?xml version="1.0" encoding="utf-8"?>
<resources>
<array name="icons">
<item>@drawable/home</item>
<item>@drawable/settings</item>
<item>@drawable/logout</item>
</array>
<array name="colors">
<item>#FFFF0000</item>
<item>#FF00FF00</item>
<item>#FF0000FF</item>
</array>
</resources>
-------------------------------
This application code retrieves each array and then obtains the first entry in each array:
这段应用程序代码取出每个数组,然后获取每个数组的第一个条目:
-------------------------------
Resources res = getResources();
TypedArray icons = res.obtainTypedArray(R.array.icons);
Drawable drawable = icons.getDrawable(0);
TypedArray colors = res.obtainTypedArray(R.array.colors);
int color = colors.getColor(0,0);
-------------------------------
Except as noted, this content is licensed under Apache 2.0. For details and restrictions, see the Content License.
除特别说明外,本文在Apache 2.0下许可。细节和限制请参考内容许可证。
Android 4.0 r1 - 18 Jan 2012 22:14
-------------------------------
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
(此页部分内容基于Android开源项目,以及使用根据创作公共2.5来源许可证描述的条款进行修改)
(本人翻译质量欠佳,请以官方最新内容为准,或者参考其它翻译版本:
* ソフトウェア技術ドキュメントを勝手に翻訳
http://www.techdoctranslator.com/android
* Ley's Blog
http://leybreeze.com/blog/
* 农民伯伯
http://www.cnblogs.com/over140/
* Android中文翻译组
http://androidbox.sinaapp.com/
)
发表评论
-
【翻译】(9-补丁2)电话簿提供者
2012-07-18 12:54 2394【翻译】(9-补丁2)电话簿提供者 see h ... -
【翻译】(8-补丁1)Android接口定义语言(AIDL)
2012-07-02 05:55 2921【翻译】(8-补丁1)Andro ... -
【翻译】(0)应用组件
2012-06-30 23:50 825【翻译】(0)应用组件 see http:// ... -
【翻译】(88)传感器
2012-05-21 21:25 1073【翻译】(88)传感器 ... -
【翻译】(87)复制与粘贴
2012-05-20 14:48 1923【翻译】(87)复制与粘贴 see http: ... -
【翻译】(86)音频捕捉
2012-05-16 15:14 1098【翻译】(86)音频捕捉 ... -
【翻译】(85)照相机
2012-05-13 15:09 3791【翻译】(85)照相机 see http:// ... -
【翻译】(84)JetPlayer
2012-04-21 16:24 980【翻译】(84)JetPlayer see h ... -
【翻译】(83)媒体回放
2012-04-21 16:00 1855【翻译】(83)媒体回放 see http:/ ... -
【翻译】(82)多媒体与照相机
2012-04-18 23:05 950【翻译】(82)多媒体与照相机 see htt ... -
【翻译】(23-补丁3)构建无障碍服务
2012-04-18 21:57 1625【翻译】(23-补丁3)构 ... -
【翻译】(23-补丁2)使应用程序无障碍
2012-04-16 13:08 2095【翻译】(23-补丁2)使应用程序无障碍 see ... -
【翻译】(23-补丁1)无障碍
2012-04-11 22:38 909【翻译】(23-补丁1)无 ... -
【翻译】(81)Renderscript之运行时API参考手册
2012-04-11 22:13 1414【翻译】(81)Renderscript之运行时API参 ... -
【翻译】(80)Renderscript之计算
2012-04-09 14:09 1440【翻译】(80)Renderscript之计算 ... -
【翻译】(79)Renderscript之图形
2012-04-08 13:59 2863【翻译】(79)Renderscript之图形 ... -
【翻译】(78)Renderscript
2012-04-04 15:35 1435【翻译】(78)Renderscript see ... -
【翻译】(77)可绘画对象动画
2012-03-18 10:52 708【翻译】(77)可绘画对象动画 see htt ... -
【翻译】(76)视图动画
2012-03-18 10:04 804【翻译】(76)视图动画 see http:/ ... -
【翻译】(75)属性动画
2012-03-17 18:24 2506【翻译】(75)属性动画 see http:/ ...
相关推荐
这一概念不仅涉及到对员工的招聘、培训、激励,更涵盖了整个组织的人力资源规划、绩效评估以及员工福利等多个方面。在深入探讨人力资源管理之前,我们首先要理解管理者的基本职能:计划、组织、人员配置、领导和控制...
1. 增加训练数据:收集更多的文言文与现代汉语对照语料,包括诗词、古文经典等,以便模型能学习到更多语言模式。 2. 模型优化:尝试更复杂的神经网络架构,如Transformer或BERT,以捕捉更深层次的语言结构和语义...
相反,真正的衡量标准在于绩效管理过程是否得到有效控制,直线经理是否能从中体验到成就感和管理的乐趣,以及他们是否愿意投入更多精力来优化绩效管理。这背后的原因在于,如果这些做法对管理者来说是必要且有利的,...
在描述中提到,可以前往百度贴吧的“erbi_lucifer”吧获取更多详细信息。百度贴吧是中国的一个大型在线社区,用户可以在那里分享兴趣、讨论话题,并且在特定的主题下交流资源和知识。在给定的URL...
这类软件能够接收并处理不同类型的输入,如语音、图像、文字等,并实时翻译成多种语言,极大地提升了沟通的效率和便利性。本文将深入探讨其设计原理、实现技术和应用场景。 一、设计原理 1. 多模态输入:多模态...
总之,易语言PHP代码翻译器是连接两种不同编程语言的桥梁,它的存在不仅有助于提升开发效率,还为开发者提供了更多的学习和创新机会。深入理解并运用这种工具,将有助于我们更好地在易语言和PHP之间穿梭,实现更多...
"cpp-Rust代码和资源的精选列表中文翻译" 这个标题表明这是一个关于Rust编程语言的精选资源列表,其中包含了代码示例和相关学习资料,并且这些内容已经过中文翻译,方便中文使用者理解。Rust是一种系统级编程语言,...
表单控件在HTML5中也得到了增强,新增了诸如`<input type="date">`、`<input type="range">`等类型,提供了更丰富的用户输入方式。同时,新的表单验证属性如`required`、`pattern`等,使得客户端验证更加容易,减轻...
**深度神经网络(DNN)谷歌翻译模块** 深度神经网络(Deep Neural Network,简称DNN)在自然语言处理领域有着广泛的应用,其中谷歌翻译(Google Translate)是其中一个...资源文件则确保了多语言环境下的用户体验。
总之,"百度翻译demo.rar"提供了丰富的学习资源,涵盖了从基本的文本翻译到更复杂的场景应用,如批量翻译、跨语言搜索等。通过研究和修改这些示例,开发者能够更好地理解和掌握百度翻译API的使用,从而在实际项目中...
总的来说,"java源码注释翻译"项目结合了Java编程、文件操作、文本处理、网络通信以及API调用等多个方面的知识,是学习和实践这些技能的好案例。通过这样的工具,开发者可以更好地跨越语言障碍,深入理解并利用开源...
对于资源翻译,如果资源DLL中有不同语言的资源版本,可以利用MFC的多语言支持。在资源编辑器中,为每个语言创建不同的资源文件,然后在DLL中设置适当的语言ID。主程序加载资源时,可以根据用户的系统设置选择相应的...
资源文件通常以`.resx`为扩展名,是XML格式的文件,包含了键值对,键通常为字符串ID,值可以是各种类型的数据。在ASP.NET或C#项目中,`.resx`文件可以被编译成`.resources`二进制文件,然后嵌入到可执行文件或DLL中...
在实际应用中,VB资源编辑器能够帮助开发者将更多的精力放在程序逻辑上,而不用过于担心用户界面的细节。它简化了资源管理,提高了开发效率,同时也使得非程序员团队成员(如美工设计师)能够参与到资源的制作和优化...
与上一章类似,这一章重点在于汉英翻译中的技巧,如重译法(同一概念的多次翻译以强调)、语态变换法(主动语态与被动语态之间的转换)、词序调整法(适应目标语言的语序规则)以及拆译法(长句分解为短句翻译)。...
3. **会员注册与登录**:用户可以注册成为会员,享受更多的个性化服务,如资源收藏、评论等。 4. **资源高级搜索**:提供更复杂的筛选条件,帮助用户精准定位所需资源。 5. **资源发布**:教师或管理员可以上传和...
在Android应用开发中,为了使应用能够适应全球不同的语言环境,开发者通常会采用资源国际化...在实际项目中,可能还需要考虑更多细节,如右到左语言的布局支持、字体大小和方向等,但这已经为基本的国际化奠定了基础。
这些标签表明了资源的来源、特定的学科方向以及适用的考试类型,帮助考生更精准地定位所需资料。 在压缩包内的文件名称列表中,我们看到了两个PDF文件:“2014-2020年扬州大学211翻译硕士英语考研真题.pdf”和...
这个比赛涵盖了算法、数据结构以及问题解决等多个方面,对于想要深入理解计算机科学,特别是对参加国际信息学奥林匹克(IOI)感兴趣的学子来说,是一个重要的学习资源。 本压缩包“usaco.rar”提供的内容是USACO...
Chrome插件是Google Chrome浏览器的一种扩展程序,它们可以极大地增强浏览器的功能,提供各种便捷服务,如广告拦截、页面翻译、密码管理等。标题提到的"Chrome插件-让Chrome下载资源更容易.zip"是一款名为Chrono的...