res/value目录XML文件
3、分类资源文件 :
如果将所有的资源放到一个XML文件中, 会增加维护难度, 这里将不通类型的资源放到不同的XML文件下;
-- styles.xml : 存放样式资源;
二、Android中资源的使用
(1) Java代码访问清单资源
在Java代码中通过R类获取资源语法 :
[packageName.] R . resourceType . resourceName
(2) Java代码访问原生资源
Resource类 : Android资源访问控制类, 该类提供了大量方法获取实际资源, Resource通过 Context.getResource()方法获得;
-- 获取清单资源 : resource.getString(id), 根据id获取实际资源;
-- 获取原生资源 : resource.getassets(), 获取AssetManager对象;
//获取Resource资源, 这个方法在Activity中执行
Resources resources = getResources();
//获取字符串资源
String hello = resources.getString(R.string.hello_world);
//获取图片资源
Drawable luncher = resources.getDrawable(R.drawable.ic_launcher);
@ [packageName : ] resourceType / resourceName
三、字符串 颜色 尺寸 数组资源的使用情况
(1) 几种资源的目录引用名称
字符串资源 :
-- 默认目录 : /res/values/strings.xml ;
-- 引用方式 : R.string.xxx ;
颜色资源 :
-- 默认目录 : /res/values/colors.xml ;
-- 引用方式 : R.color.xxx ;
尺寸资源 :
-- 默认目录 : /res/values/dimens.xml ;
-- 引用方式 : R.dimens.xxx ;
PS
颜色定义方式:
三原色 : 白光 可以分解为 红, 绿, 蓝 三种颜色的光, 红绿蓝都是最大值的时候就是白色, 三种值相等, 但不是最大值是灰色, 如果其中一种或两种值比较大, 就会产生各种颜色的彩色;
颜色表示 : 颜色通过 红(red) 绿(green) 蓝(blue) 三种颜色, 以及 透明度(alpha) 来表示的;
-- 颜色开头 : 颜色值总是以 # 开头;
-- 无透明度 : 如果没有 alpha 值, 默认完全不透明;
颜色定义形式 :
-- #RGB : 红 绿 蓝 三原色值, 每个值分16个等级, 最小为0, 最大为f;
-- #ARGB : 透明度 红 绿 蓝 值, 每个值分16个等级, 最小为0, 最大为f;
-- #RRGGBB : 红 绿 蓝 三原色值, 每个值分 256个等级, 最小为0, 最大为ff;
-- #AARRGGBB : 透明度 红 绿 蓝 值, 每个值分 256个等级, 最小为0, 最大为ff;
(2)字符串 颜色 尺寸 XML文件定义
1) 字符串资源文件
字符串资源文件信息 :
-- 资源位置 : /res/values 目录下;
-- 根元素 :
-- 子元素 :
-- name属性 : 指定变量名称;
-- 标签文本 : 标签文本就是字符串信息;
ResourceTest
Settings
Hello world!
#FF4000
#120A2A
#00FF00
#FFFF00
16dp
16dp
4)数组资源
资源数组文件 : 通常将数组定义在 /res/values/arrays.xml文件中;
-- 根标签 :
-- 子标签 :
资源数组类型 : 数组的资源的跟标签都是
-- 普通类型数组 : 使用
-- 字符串数组 : 使用
-- 整数数组 : 使用
XML文件中调用数组资源 : @ [packageName :] array/arrayName ;
Java文件中调用数组资源 : [packageName . ]R.array.arrayName ;
-- 获取实际普通数组 : TypeArray obtainTypedArray(int id), 根据普通数组资源名称获取实际普通数组, TypeArray类提供了getXxx(int index)方法获取指定索引的元素;
-- 获取字符串数组 : String[] getStringArray(int id), 根据字符串数组资源名称获取字符串数组;
-- 获取整数数组 : int[] getIntArray(int id), 根据整数数组资源名称获取实际的整数数组;
示例 :
colors.xml
#F00
#0F0
#00F
#0FF
#F0F
#FF0
#07F
#70F
#F70
dimens.xml
8dp
60dp
66dp
18sp
strings.xml
Hello World, ValuesResTest!
字符串,数字,尺寸,数组资源
F00
0F0
00F
0FF
F0F
FF0
07F
70F
F70
arrays.xml
- @color/c1
- @color/c2
- @color/c3
- @color/c4
- @color/c5
- @color/c6
- @color/c7
- @color/c8
- @color/c9
- @string/c1
- @string/c2
- @string/c3
- @string/c4
- @string/c5
- @string/c6
- @string/c7
- @string/c8
- @string/c9
- Java
- Ajax
- Android
package WangLi.Resources.Values;
import android.app.Activity;
import android.content.res.Resources;
import android.content.res.TypedArray;
import android.os.Bundle;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.GridView;
import android.widget.TextView;
public class ValuesResTest extends Activity {
/** Called when the activity is first created. */
String[] texts;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
texts = getResources().getStringArray(R.array.string_arr);
//创建一个BaseAdapter对象
BaseAdapter ba = new BaseAdapter()
{
public int getCount()
{
return texts.length;
}
public Object getItem(int position)
{
return texts[position];
}
public long getItemId(int position)
{
return position;
}
public View getView(int position,View convertView,ViewGroup parent)
{
TextView text = new TextView(ValuesResTest.this);
Resources res = ValuesResTest.this.getResources();
//使用尺寸资源来设置文本框的高度,宽度
text.setWidth((int)res.getDimension(R.dimen.cell_width));
text.setHeight((int)res.getDimension(R.dimen.cell_height));
//使用字符串资源设置文本框的内容
text.setText(texts[position]);
TypedArray icons = res.obtainTypedArray(R.array.plain_arr);
//使用颜色资源来设置文本框的背景色
text.setBackgroundDrawable(icons.getDrawable(position));
text.setTextSize(20);
return text;
}
};
GridView grid = (GridView)findViewById(R.id.grid01);
grid.setAdapter(ba);
}
}
最后还要补充的就是还有布尔和整数资源了。
整数资源:
/res/values/integer.xml
10
20
java代码
import android.app.Activity;
import android.content.res.Resources;
import android.os.Bundle;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//获取Resource资源, 这个方法在Activity中执行
Resources resources = getResources();
int size_1 = resources.getInteger(R.integer.size_1);
System.out.println(size_1);
}
}
/res/values/bool.xml
true
false
import android.app.Activity;
import android.content.res.Resources;
import android.os.Bundle;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//获取Resource资源, 这个方法在Activity中执行
Resources resources = getResources();
boolean is_true = resources.getBoolean(R.bool.is_true);
System.out.println(is_true);
}
}