zoukankan      html  css  js  c++  java
  • Intent七在属性之一:ComponentName


    注:在《疯狂android讲义》中,此属性称为Component,官方文档中称为ComponentName。

    1、The name of the component that should handle the intent. This field is a ComponentName object — a combination of the fully qualified class name of the target component (for example "com.example.project.app.FreneticActivity") and the package name set in the manifest file of the application where the component resides (for example, "com.example.project"). The package part of the component name and the package name set in the manifest do not necessarily have to match.
    The component name is optional. If it is set, the Intent object is delivered to an instance of the designated class. If it is not set, Android uses other information in the Intent object to locate a suitable target — see Intent Resolution, later in this document.

    The component name is set by setComponent(), setClass(), or setClassName() and read by getComponent().


    2、ComponentName用于显式指定Intent所对应的组件。

  • 相关阅读:
    两个有序数组,找第k小的数//未完
    top详解--查看cpu及内存使用情况
    查看IO情况
    hadoop常用的调优参数
    zookeeper 的 javaAPI
    MapReduce优化
    mySQL索引数据数据结构 B+ 树
    P2670 [NOIP2015 普及组] 扫雷游戏
    P1887 乘积最大3
    1299. 五指山
  • 原文地址:https://www.cnblogs.com/eaglegeek/p/4557965.html
Copyright © 2011-2022 走看看