本文整理汇总了Java中android.os.ParcelUuid.getUuid方法的典型用法代码示例。如果您正苦于以下问题:Java ParcelUuid.getUuid方法的具体用法?Java ParcelUuid.getUuid怎么用?Java ParcelUuid.getUuid使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.os.ParcelUuid
的用法示例。
在下文中一共展示了ParcelUuid.getUuid方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: matchesServiceUuids
import android.os.ParcelUuid; //导入方法依赖的package包/类
private boolean matchesServiceUuids(ParcelUuid uuid, ParcelUuid parcelUuidMask,
List<ParcelUuid> uuids) {
if (uuid == null) {
return true;
}
if (uuids == null) {
return false;
}
for (ParcelUuid parcelUuid : uuids) {
UUID uuidMask = parcelUuidMask == null ? null : parcelUuidMask.getUuid();
if (matchesServiceUuid(uuid.getUuid(), uuidMask, parcelUuid.getUuid())) {
return true;
}
}
return false;
}
示例2: matchesServiceUuids
import android.os.ParcelUuid; //导入方法依赖的package包/类
private boolean matchesServiceUuids(ParcelUuid uuid, ParcelUuid parcelUuidMask,
List<ParcelUuid> uuids) {
if (uuid == null) {
return true;
}
if (uuids == null) {
return false;
}
for (ParcelUuid parcelUuid : uuids) {
UUID uuidMask = parcelUuidMask == null ? null : parcelUuidMask.getUuid();
if (matchesServiceUuid(uuid.getUuid(), uuidMask, parcelUuid.getUuid())) {
return true;
}
}
return false;
}
示例3: is16BitUuid
import android.os.ParcelUuid; //导入方法依赖的package包/类
/**
* Check whether the given parcelUuid can be converted to 16 bit bluetooth uuid.
*
* @param parcelUuid
* @return true if the parcelUuid can be converted to 16 bit uuid, false otherwise.
*/
public static boolean is16BitUuid(ParcelUuid parcelUuid) {
UUID uuid = parcelUuid.getUuid();
if (uuid.getLeastSignificantBits() != BASE_UUID.getUuid().getLeastSignificantBits()) {
return false;
}
return ((uuid.getMostSignificantBits() & 0xFFFF0000FFFFFFFFL) == 0x1000L);
}
示例4: is32BitUuid
import android.os.ParcelUuid; //导入方法依赖的package包/类
/**
* Check whether the given parcelUuid can be converted to 32 bit bluetooth uuid.
*
* @param parcelUuid
* @return true if the parcelUuid can be converted to 32 bit uuid, false otherwise.
*/
public static boolean is32BitUuid(ParcelUuid parcelUuid) {
UUID uuid = parcelUuid.getUuid();
if (uuid.getLeastSignificantBits() != BASE_UUID.getUuid().getLeastSignificantBits()) {
return false;
}
if (is16BitUuid(parcelUuid)) {
return false;
}
return ((uuid.getMostSignificantBits() & 0xFFFFFFFFL) == 0x1000L);
}
示例5: onFilter
import android.os.ParcelUuid; //导入方法依赖的package包/类
@Override
public BluetoothLeDevice onFilter(BluetoothLeDevice bluetoothLeDevice) {
BluetoothLeDevice tempDevice = null;
if (bluetoothLeDevice != null && bluetoothLeDevice.getDevice() != null
&& bluetoothLeDevice.getDevice().getUuids() != null
&& bluetoothLeDevice.getDevice().getUuids().length > 0) {
for (ParcelUuid parcelUuid : bluetoothLeDevice.getDevice().getUuids()) {
if (uuid != null && uuid == parcelUuid.getUuid()) {
tempDevice = bluetoothLeDevice;
}
}
}
return tempDevice;
}
示例6: ParcelableTappyBleDeviceDefinition
import android.os.ParcelUuid; //导入方法依赖的package包/类
public ParcelableTappyBleDeviceDefinition(Parcel in) {
this.name = in.readString();
this.address = in.readString();
ParcelUuid pServiceUuid = in.readParcelable(null);
this.serviceUuid = pServiceUuid.getUuid();
ParcelUuid pRxUuid = in.readParcelable(null);
this.rxCharacteristicUuid = pRxUuid.getUuid();
ParcelUuid pTxUuid = in.readParcelable(null);
this.txCharacteristicUuid = pTxUuid.getUuid();
}
示例7: getServiceIdentifierFromParcelUuid
import android.os.ParcelUuid; //导入方法依赖的package包/类
/**
* Extract the Service Identifier or the actual uuid from the Parcel Uuid.
* For example, if 0000110B-0000-1000-8000-00805F9B34FB is the parcel Uuid,
* this function will return 110B
*
* @param parcelUuid
* @return the service identifier.
*/
public static int getServiceIdentifierFromParcelUuid(ParcelUuid parcelUuid) {
UUID uuid = parcelUuid.getUuid();
long value = (uuid.getMostSignificantBits() & 0x0000FFFF00000000L) >>> 32;
return (int) value;
}
示例8: getServiceIdentifierFromParcelUuid
import android.os.ParcelUuid; //导入方法依赖的package包/类
/**
* Extract the Service Identifier or the actual uuid from the Parcel Uuid.
* For example, if 0000110B-0000-1000-8000-00805F9B34FB is the parcel Uuid,
* this function will return 110B
* @param parcelUuid
* @return the service identifier.
*/
public static int getServiceIdentifierFromParcelUuid(ParcelUuid parcelUuid) {
UUID uuid = parcelUuid.getUuid();
long value = (uuid.getMostSignificantBits() & 0x0000FFFF00000000L) >>> 32;
return (int)value;
}