Android自动化测试之MonkeyRunner-startActivity之component(十四)

Android自动化测试之MonkeyRunner-ComponentName

extends Object
implements Parcelable Cloneable Comparable<T>
java.lang.Object
   ↳android.content.ComponentName

Class Overview


Identifier for a specific application component (Activity,Service,BroadcastReceiver, orContentProvider) that is available. Two pieces of information, encapsulated here, are required to identify a component: the package (a String) it exists in, and the class (a String) name inside of that package.

Summary


[Expand]
Inherited Constants
From interface android.os.Parcelable
intCONTENTS_FILE_DESCRIPTORBit masks for use with describeContents(): each bit represents a kind of object considered to have potential special significance when marshalled.
intPARCELABLE_WRITE_RETURN_VALUEFlag for use with writeToParcel(Parcel, int): the object being written is a return value, that is the result of a function such as "Parcelable someFunction()", "void someFunction(out Parcelable)", or "void someFunction(inout Parcelable)".
Fields
public static final Creator< ComponentName> CREATOR 
Public Constructors
ComponentName( String pkg, String cls)
Create a new component identifier.
ComponentName( Context pkg, String cls)
Create a new component identifier from a Context and class name.
ComponentName( Context pkg, Class<?> cls)
Create a new component identifier from a Context and Class object.
ComponentName( Parcel in)
Instantiate a new ComponentName from the data in a Parcel that was previously written with writeToParcel(Parcel, int).
Public Methods
ComponentName clone()
Creates and returns a copy of this Object.
int compareTo( ComponentName that)
int describeContents()
Describe the kinds of special objects contained in this Parcelable's marshalled representation.
boolean equals( Object obj)
Compares this instance with the specified object and indicates if they are equal.
String flattenToShortString()
The same as flattenToString(), but abbreviates the class name if it is a suffix of the package.
String flattenToString()
Return a String that unambiguously describes both the package and class names contained in the ComponentName.
String getClassName()
Return the class name of this component.
String getPackageName()
Return the package name of this component.
String getShortClassName()
Return the class name, either fully qualified or in a shortened form (with a leading '.') if it is a suffix of the package.
int hashCode()
Returns an integer hash code for this object.
static ComponentName readFromParcel( Parcel in)
Read a ComponentName from a Parcel that was previously written with writeToParcel(ComponentName, Parcel), returning either a null or new object as appropriate.
String toShortString()
Return string representation of this class without the class's name as a prefix.
String toString()
Returns a string containing a concise, human-readable description of this object.
static ComponentName unflattenFromString( String str)
Recover a ComponentName from a String that was previously created with flattenToString().
void writeToParcel( Parcel out, int flags)
Flatten this object in to a Parcel.
static void writeToParcel( ComponentName c, Parcel out)
Write a ComponentName to a Parcel, handling null pointers.
[Expand]
Inherited Methods
From class java.lang.Object
Object clone()
Creates and returns a copy of this Object.
boolean equals( Object o)
Compares this instance with the specified object and indicates if they are equal.
void finalize()
Invoked when the garbage collector has detected that this instance is no longer reachable.
final Class<?> getClass()
Returns the unique instance of Class that represents this object's class.
int hashCode()
Returns an integer hash code for this object.
final void notify()
Causes a thread which is waiting on this object's monitor (by means of calling one of the wait() methods) to be woken up.
final void notifyAll()
Causes all threads which are waiting on this object's monitor (by means of calling one of the wait() methods) to be woken up.
String toString()
Returns a string containing a concise, human-readable description of this object.
final void wait()
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object.
final void wait(long millis, int nanos)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the specified timeout expires.
final void wait(long millis)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the specified timeout expires.
From interface android.os.Parcelable
abstract int describeContents()
Describe the kinds of special objects contained in this Parcelable's marshalled representation.
abstract void writeToParcel( Parcel dest, int flags)
Flatten this object in to a Parcel.
From interface java.lang.Comparable
abstract int compareTo(T another)
Compares this object to the specified object to determine their relative order.

Fields


public static final Creator<ComponentName>CREATOR
Added in API level 1

Public Constructors


public ComponentName(String pkg,String cls)
Added in API level 1

Create a new component identifier.

Parameters
pkgThe name of the package that the component exists in. Can not be null.
clsThe name of the class inside of pkg that implements the component. Can not be null.
public ComponentName(Context pkg,String cls)
Added in API level 1

Create a new component identifier from a Context and class name.

Parameters
pkgA Context for the package implementing the component, from which the actual package name will be retrieved.
clsThe name of the class inside of pkg that implements the component.
public ComponentName(Context pkg,Class<?> cls)
Added in API level 1

Create a new component identifier from a Context and Class object.

Parameters
pkgA Context for the package implementing the component, from which the actual package name will be retrieved.
clsThe Class object of the desired component, from which the actual class name will be retrieved.
public ComponentName(Parcel in)
Added in API level 1

Instantiate a new ComponentName from the data in a Parcel that was previously written withwriteToParcel(Parcel, int). Note that you must not use this with data written bywriteToParcel(ComponentName, Parcel) since it is not possible to handle a null ComponentObject here.

Parameters
inThe Parcel containing the previously written ComponentName, positioned at the location in the buffer where it was written.

Public Methods


public ComponentName clone ()
Added in API level 1

Creates and returns a copy of this Object. The default implementation returns a so-called "shallow" copy: It creates a new instance of the same class and then copies the field values (including object references) from this instance to the new instance. A "deep" copy, in contrast, would also recursively clone nested objects. A subclass that needs to implement this kind of cloning should callsuper.clone() to create the new instance and then create deep copies of the nested, mutable objects.

Returns
  • a copy of this object.
public int compareTo(ComponentName that)
Added in API level 4

public int describeContents()
Added in API level 1

Describe the kinds of special objects contained in this Parcelable's marshalled representation.

Returns
  • a bitmask indicating the set of special object types marshalled by the Parcelable.
public boolean equals(Object obj)
Added in API level 1

Compares this instance with the specified object and indicates if they are equal. In order to be equal,o must represent the same object as this instance using a class-specific comparison. The general contract is that this comparison should be reflexive, symmetric, and transitive. Also, no object reference other than null is equal to null.

The default implementation returns true only if this == o. SeeWriting a correctequals method if you intend implementing your ownequals method.

The general contract for the equals and hashCode() methods is that ifequals returnstrue for any two objects, thenhashCode() must return the same value for these objects. This means that subclasses ofObject usually override either both methods or neither of them.

Parameters
objthe object to compare this instance with.
Returns
  • true if the specified object is equal to this Object;false otherwise.
public String flattenToShortString ()
Added in API level 1

The same as flattenToString(), but abbreviates the class name if it is a suffix of the package. The result can still be used withunflattenFromString(String).

Returns
  • Returns a new String holding the package and class names. This is represented as the package name, concatenated with a '/' and then the class name.
public String flattenToString ()
Added in API level 1

Return a String that unambiguously describes both the package and class names contained in the ComponentName. You can later recover the ComponentName from this string throughunflattenFromString(String).

Returns
  • Returns a new String holding the package and class names. This is represented as the package name, concatenated with a '/' and then the class name.
public String getClassName ()
Added in API level 1

Return the class name of this component.

public String getPackageName ()
Added in API level 1

Return the package name of this component.

public String getShortClassName ()
Added in API level 1

Return the class name, either fully qualified or in a shortened form (with a leading '.') if it is a suffix of the package.

public int hashCode()
Added in API level 1

Returns an integer hash code for this object. By contract, any two objects for whichequals(Object) returnstrue must return the same hash code value. This means that subclasses ofObject usually override both methods or neither method.

Note that hash values must not change over time unless information used in equals comparisons also changes.

See Writing a correct hashCode method if you intend implementing your ownhashCode method.

Returns
  • this object's hash code.
public static ComponentName readFromParcel (Parcel in)
Added in API level 1

Read a ComponentName from a Parcel that was previously written with writeToParcel(ComponentName, Parcel), returning either a null or new object as appropriate.

Parameters
inThe Parcel from which to read the ComponentName
Returns
  • Returns a new ComponentName matching the previously written object, or null if a null had been written.
public String toShortString ()
Added in API level 1

Return string representation of this class without the class's name as a prefix.

public String toString ()
Added in API level 1

Returns a string containing a concise, human-readable description of this object. Subclasses are encouraged to override this method and provide an implementation that takes into account the object's type and data. The default implementation is equivalent to the following expression:

   getClass().getName() + '@' + Integer.toHexString(hashCode())

See Writing a useful toString method if you intend implementing your owntoString method.

Returns
  • a printable representation of this object.
public static ComponentName unflattenFromString (String str)
Added in API level 1

Recover a ComponentName from a String that was previously created with flattenToString(). It splits the string at the first '/', taking the part before as the package name and the part after as the class name. As a special convenience (to use, for example, when parsing component names on the command line), if the '/' is immediately followed by a '.' then the final class name will be the concatenation of the package name with the string following the '/'. Thus "com.foo/.Blah" becomes package="com.foo" class="com.foo.Blah".

Parameters
strThe String that was returned by flattenToString().
Returns
  • Returns a new ComponentName containing the package and class names that were encoded instr
public void writeToParcel(Parcel out, int flags)
Added in API level 1

Flatten this object in to a Parcel.

Parameters
outThe Parcel in which the object should be written.
flagsAdditional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE.
public static void writeToParcel(ComponentName c,Parcel out)
Added in API level 1

Write a ComponentName to a Parcel, handling null pointers. Must be read with readFromParcel(Parcel).

Parameters
cThe ComponentName to be written.
outThe Parcel in which the ComponentName will be placed.
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值