當前位置: 首頁>>代碼示例>>Java>>正文


Java ParcelUuid.getUuid方法代碼示例

本文整理匯總了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;
}
 
開發者ID:Twelvelines,項目名稱:AndroidMuseumBleManager,代碼行數:18,代碼來源:ScanFilterCompat.java

示例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;
}
 
開發者ID:TapTrack,項目名稱:TappyBLE,代碼行數:17,代碼來源:ScanFilter.java

示例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);
}
 
開發者ID:Twelvelines,項目名稱:AndroidMuseumBleManager,代碼行數:14,代碼來源:BluetoothUuidCompat.java

示例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);
}
 
開發者ID:Twelvelines,項目名稱:AndroidMuseumBleManager,代碼行數:17,代碼來源:BluetoothUuidCompat.java

示例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;
}
 
開發者ID:xiaoyaoyou1212,項目名稱:BLE,代碼行數:15,代碼來源:UuidFilterScanCallback.java

示例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();
}
 
開發者ID:TapTrack,項目名稱:TappyBLE,代碼行數:13,代碼來源:ParcelableTappyBleDeviceDefinition.java

示例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;
}
 
開發者ID:Twelvelines,項目名稱:AndroidMuseumBleManager,代碼行數:14,代碼來源:BluetoothUuidCompat.java

示例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;
}
 
開發者ID:TapTrack,項目名稱:TappyBLE,代碼行數:13,代碼來源:BluetoothUuid.java


注:本文中的android.os.ParcelUuid.getUuid方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。