public class WifiP2pConfig
extends Object
implements Parcelable
java.lang.Object | |
↳ | android.net.wifi.p2p.WifiP2pConfig |
表示用于建立连接的Wi-Fi P2p配置的类
也可以看看:
Inherited constants |
---|
From interface android.os.Parcelable
|
Fields |
|
---|---|
public static final Creator<WifiP2pConfig> |
CREATOR 实现Parcelable接口 |
public String |
deviceAddress 设备MAC地址唯一标识一个Wi-Fi p2p设备 |
public int |
groupOwnerIntent 这是一个介于0和15之间的整数值,其中0表示最少成为组所有者的倾向,而15表示成为组所有者的最高倾向。 |
public WpsInfo |
wps Wi-Fi保护设置信息 |
Public constructors |
|
---|---|
WifiP2pConfig() |
|
WifiP2pConfig(WifiP2pConfig 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
|
int groupOwnerIntent
这是一个介于0和15之间的整数值,其中0表示最少成为组所有者的倾向,而15表示成为组所有者的最高倾向。 值为-1表示系统可以选择适当的值。
WifiP2pConfig (WifiP2pConfig source)
复制构造函数
Parameters | |
---|---|
source |
WifiP2pConfig
|
int describeContents ()
实现Parcelable接口
Returns | |
---|---|
int |
a bitmask indicating the set of special object types marshaled by this Parcelable object instance. |
String toString ()
返回对象的字符串表示形式。 通常, toString
方法返回一个“文本表示”该对象的字符串。 结果应该是一个简洁但内容丰富的表述,对于一个人来说很容易阅读。 建议所有子类重写此方法。
类Object
的toString
方法返回一个字符串,其中包含对象为实例的类的名称,符号字符“ @
”以及对象的哈希代码的无符号十六进制表示形式。 换句话说,这个方法返回一个字符串,其值等于:
getClass().getName() + '@' + Integer.toHexString(hashCode())
Returns | |
---|---|
String |
a string representation of the object. |
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 . |