1) 资源文件的访问:
a) 代码中访问: 使用Context 的getResources() 方法
b) 其他资源中引用资源的一般格式:@[包名称:] 资源类型/资源名称。
1) 代码中使用资源文件:
R.资源文件类型.资源文件名称
findViewById(R.id.cancelButton);
访问系统资源的方法:
android.R.资源文件类型.资源文件名称
资源中访问其他资源的方法:
android:text="@string/styled_welcome_message"
使用颜色资源:
定义:
#RGB
#ARGB
a) 资源文件的定义:
#f00
#0000ff
b) 其他资源中引用颜色:
adnroid:textColor="@color/blue_text"
c) 代码中引用颜色
gewWindow().setBackgroundDrawableResource(R.color.red_bg0;
阅读(419) | 评论(0) | 转发(0) |