Android项目目录结构
2010-06-19 04:10:00 来源:WEB开发网intent-filter
声明了指定的一组组件支持的Intent值,从
而形成了IntentFilter。除了能在此元素下指
定不同类型的值,属性也能放在这里来描
述一个操作所需的唯一的标签、icon和其他信息
action
组件支持的Intent action
category
组件支持的Intent Category。这里指定
了应用程序默认启动的activity
uses-sdk
该应用程序所使用的sdk版本相关
下面我们看看资源文件中一些常量的定义,如String.xml,如代码清单3-3所示。
代码清单3-3 String.xml
< ?xml version="1.0" encoding="utf-8"?> < resources> < string name="hello">Hello World, HelloAndroid! < string name="app_name">HelloAndroid < /resources>
这个文件很简单,就定义了两个字符串资源,与R.java中对应的索引如代码清单3-4所示。
代码清单3-4 R.java中的String类
public static final class string { public static final int app_name=0x7f040001; public static final int hello=0x7f040000; }
在程序中装载并使用这个字符串资源如代码清单3-5。
代码清单3-5 String资源的使用
Resources r = this.getContext().getResources(); String appname= ((String) r.getString(R.string.app_name)); String hello= ((String)
更多精彩
赞助商链接