1. 字符串数组

定义:
<resources...><string-array name = "test_array"><item>one</item><item>two</item><item>three</item></string-array></resources>

调用:
Resources res = yourActivity.getResources();//yourActivity是你的ActivityString s[] = res.getStringArray(R.array.test_array);

2.复数资源

定义:
<resources...><plurals name = "eggs_in_a_nest_text"><item quantity="one">There is 1 egg</item><item quantity="other">There is %d eggs</item><item>three</item></plurals></resources>

调用:
Resources res = yourActivity.getResources();//yourActivity是你的ActivityString s1 = res.getQuantityString(R.plurals.eggs_in_a_nest_text,0,0);//getQuantityString()的第一个参数是复数ID,//第二个是选择要使用的字符串,为1时,按原样使用该字符串,不为1时,必须提供第三个参数,它的值放在%d的位置String s1 = res.getQuantityString(R.plurals.eggs_in_a_nest_text,1,1);

3.字符串资源的更多信息

定义字符串资源XML语法

<resources><string name="simple_string">simple string</string><string name="quoted_string">"quoted 'xyz' string"</string><string name="double_quoted_string">\"double quotes\"</string><string name="java_format_string">hello %2$s Java format string. %1$s again</string><string name="tagged_string">Hello <b><i>Slanted Android</i></b>, You are bold.</string></resources>

在Java代码中使用:
String simpleString = activity.getString(R.string.simple_string);textView.setText(simpleString);

在XML中使用:
<TextView android:layout_width="fill_parent"android:layout_height="wrap_content"android:gravity="center_horizontal"android:text="@string/tagged_string"/>

4.颜色资源

在XML中定义:

<resources><color name="red">#f00</color><color name="blue"#0000ff</color><color name="green">#f0f0</color><color name="main_back_ground_color">#ffffff00</color></resources>

在Java中使用:

int mainBackGroundColor = activity.getResources.getColor(R.color.main_back_ground_color);

在XML中使用:
<TextView android:layout_width="fill_parent"android:layout_height="wrap_content"android:textColor="@color/red"android:text="Sample Text to Show Red Color"/>

5.尺寸资源

在XML中定义:

<resources><dimen name="mysize_in_pixels">1px</dimen><dimen name="mysize_in_dp">5dp</dimen><dimen name="medium_size">100sp</dimen></resources>

px:像素
in:英寸
mm:毫米
pt:磅
dp:与密度无关的像素,基于160dpi(没英寸的像素数)屏幕(尺寸适应屏幕密度)
sp:与比例无关的像素(这种尺寸支持用户调整大小,适合在字体中使用)

在Java代码中使用:
float dimen = activity.getResources().getDimension(R.dimen.mysize_in_pixels);

在XML中使用:
<TextView android:layout_width="fill_parent"android:layout_height="wrap_content"android:textSize="@dimen/medium_size"/>

6.图像资源

Android会为在/res/drawable子目录中的图像资源自动生成ID,支持jpg,png,gif。如图像名为sample.jgp,使用时为R.drawable.sample
在Java中使用:
BitmapDrawble d = activity.getResources().getDrawable(R.drawable.sample_image);button.setBackgroundDrawable(d);button.setBackgroundResource(R.drawable.sample);

7.色图资源

在Android中,图像是一种图形对象资源。Android支持另一种称为“色图”的图形对象资源,它实际上是一种彩色的矩形。
要定义色图资源,是在/res/values/drawable.xml中

<resources><drawable name="red_rectangle">#f00</drawable></resources>

在Java中使用:

ColorDrawable redDrawable = (ColorDrawable)activity.getResources().getDrawable(R.drawable.red_rectangle);textView.setBackgroundDrawable(redDrawable);

定义圆角矩形:
在/res/drawable/my_rounded_rectangle.xml中

<shape xmlns:android="http://schemas.android.com/apk/res/android"><solid android:color="#f0600000"/><stroke android:width="3dp" color="#ffff8080"/><corners android:radius="13dp"/><padding android:left="10dp" android:top="10dp"<android:right="10dp" android:bottom="10dp"/></shape>

在Java中使用:

GradientDrawable roundedRectangle = (GradientDrawable)activity.getResources().getDrawable(R.drawable.my_rounded_rectangle);textView.setBackgroundDrawable(roundedRectangle);



更多相关文章

  1. Android(安卓)应用启动时去掉应用图标
  2. Android(安卓)OpenGL ES 开发教程(6):GLSurfaceView
  3. Android(安卓)自定义View
  4. Android中自定义checkbox样式
  5. android 细节之android.view.InflateException: Binary XML file
  6. android studio使用volley发送post和get请求
  7. Android(安卓)ApiDemos示例解析(166):Views->Layouts->TableLayo

随机推荐

  1. Android(安卓)WebView加载Html文本不能适
  2. android 学习笔记(1)
  3. Android的Http网络请求模型初步
  4. android外包公司—技术分享:Android开发环
  5. Android(安卓)解决NestedScrollView 嵌套
  6. android 自定义TextView"会发脾气的TextV
  7. Android系统启动流程简介。
  8. Ubuntu9.04下android sdk环境配置总结
  9. Android(安卓)Studio发布项目到jcenter,
  10. Android(安卓)多颜色主题框架MagicaSakur