标签:
英文原文:http://developer.android.com/guide/topics/manifest/instrumentation-element.html
采集(更新)日期:2014-7-1
搬迁自原博客:http://blog.sina.com.cn/s/blog_48d491300100zmui.html
<instrumentation android:functionalTest=["true" | "false"] android:handleProfiling=["true" | "false"] android:icon="drawable resource" android:label="string resource" android:name="string" android:targetPackage="string" />
<manifest>
Instrumentation
类, 用于监视应用程序与系统之间的交互。 Instrumentation 对象将在所有应用程序组件之前被实例化。android:functionalTest
true
”表示是,“false
”表示否。 默认值是“false
”。android:handleProfiling
true
”表示它可以自行决定何时启动和停止,“false
”表示整个运行期间都将持续开启。 设为“true
”使得 Instrumentation 对象可以只针对某些操作进行性能分析。 默认值是“false
”。android:icon
android:label
android:name
Instrumentation
子类的名称。 应设为完全限定格式的类名称(比如“com.example.project.StringInstrumentation
”)。 不过作为简称,如果类名的首字符是句点,则 <manifest>
元素中设置的包名将会自动添加到前面。
没有默认值,类名必须指定。
android:targetPackage
<manifest>
元素设置的包名称指定。Android开发-API指南-<instrumentation >
标签:
原文地址:http://www.cnblogs.com/popapa/p/instrumentation-element.html