Most visited

Recently visited

Added in API level 14

WifiP2pInfo

public class WifiP2pInfo
extends Object implements Parcelable

java.lang.Object
   ↳ android.net.wifi.p2p.WifiP2pInfo


表示有关Wi-Fi p2p组的连接信息的类

也可以看看:

Summary

Inherited constants

From interface android.os.Parcelable

Fields

public static final Creator<WifiP2pInfo> CREATOR

实现Parcelable接口

public boolean groupFormed

指示是否已成功创建p2p组

public InetAddress groupOwnerAddress

集团所有者地址

public boolean isGroupOwner

指示当前设备是否为组所有者

Public constructors

WifiP2pInfo()
WifiP2pInfo(WifiP2pInfo source)

复制构造函数

Public methods

int describeContents()

实现Parcelable接口

String toString()

返回对象的字符串表示形式。

void writeToParcel(Parcel dest, int flags)

实现Parcelable接口

Inherited methods

From class java.lang.Object
From interface android.os.Parcelable

Fields

CREATOR

Added in API level 14
Creator<WifiP2pInfo> CREATOR

实现Parcelable接口

groupFormed

Added in API level 14
boolean groupFormed

指示是否已成功创建p2p组

groupOwnerAddress

Added in API level 14
InetAddress groupOwnerAddress

集团所有者地址

isGroupOwner

Added in API level 14
boolean isGroupOwner

指示当前设备是否为组所有者

Public constructors

WifiP2pInfo

Added in API level 14
WifiP2pInfo ()

WifiP2pInfo

Added in API level 14
WifiP2pInfo (WifiP2pInfo source)

复制构造函数

Parameters
source WifiP2pInfo

Public methods

describeContents

Added in API level 14
int describeContents ()

实现Parcelable接口

Returns
int a bitmask indicating the set of special object types marshaled by this Parcelable object instance.

toString

Added in API level 14
String toString ()

返回对象的字符串表示形式。 通常, toString方法返回一个“文本表示”该对象的字符串。 结果应该是一个简洁但内容丰富的表述,对于一个人来说很容易阅读。 建议所有子类重写此方法。

ObjecttoString方法返回一个字符串,其中包含对象为实例的类的名称,符号字符“ @ ”以及对象的哈希代码的无符号十六进制表示形式。 换句话说,这个方法返回一个字符串,其值等于:

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

Returns
String a string representation of the object.

writeToParcel

Added in API level 14
void writeToParcel (Parcel dest, 
                int flags)

实现Parcelable接口

Parameters
dest Parcel: The Parcel in which the object should be written.
flags int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE.

Hooray!