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


Java ParcelUuid.fromString方法代碼示例

本文整理匯總了Java中android.os.ParcelUuid.fromString方法的典型用法代碼示例。如果您正苦於以下問題:Java ParcelUuid.fromString方法的具體用法?Java ParcelUuid.fromString怎麽用?Java ParcelUuid.fromString使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在android.os.ParcelUuid的用法示例。


在下文中一共展示了ParcelUuid.fromString方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: jsonToBleAdvertiseData

import android.os.ParcelUuid; //導入方法依賴的package包/類
@TargetApi(Build.VERSION_CODES.LOLLIPOP)
public static AdvertiseData jsonToBleAdvertiseData(JSONObject jsonObject) throws JSONException {
    AdvertiseData.Builder builder = new AdvertiseData.Builder();
    if (jsonObject.has("IncludeDeviceName")) {
        builder.setIncludeDeviceName(jsonObject.getBoolean("IncludeDeviceName"));
    }
    if (jsonObject.has("IncludeTxPowerLevel")) {
        builder.setIncludeTxPowerLevel(jsonObject.getBoolean("IncludeTxPowerLevel"));
    }
    if (jsonObject.has("ServiceData")) {
        JSONArray serviceData = jsonObject.getJSONArray("ServiceData");
        for (int i = 0; i < serviceData.length(); i++) {
            JSONObject dataSet = serviceData.getJSONObject(i);
            ParcelUuid parcelUuid = ParcelUuid.fromString(dataSet.getString("UUID"));
            builder.addServiceUuid(parcelUuid);
            if (dataSet.has("Data")) {
                byte[] data = Base64.decode(dataSet.getString("Data"), Base64.DEFAULT);
                builder.addServiceData(parcelUuid, data);
            }
        }
    }
    if (jsonObject.has("ManufacturerData")) {
        JSONObject manufacturerData = jsonObject.getJSONObject("ManufacturerData");
        int manufacturerId = manufacturerData.getInt("ManufacturerId");
        byte[] manufacturerSpecificData =
                Base64.decode(jsonObject.getString("ManufacturerSpecificData"), Base64.DEFAULT);
        builder.addManufacturerData(manufacturerId, manufacturerSpecificData);
    }
    return builder.build();
}
 
開發者ID:google,項目名稱:mobly-bundled-snippets,代碼行數:31,代碼來源:JsonDeserializer.java

示例2: pbgattAdvertiseStart

import android.os.ParcelUuid; //導入方法依賴的package包/類
public void pbgattAdvertiseStart(byte[] serviceData) {
	
	if(D){
		Log.d(TAG, "pbgattAdvertiseStart");
	}

	ParcelUuid uu = ParcelUuid.fromString(UUID_PB_SVC);
	
	mBluetoothLeAdvertiser.startAdvertising(createAdvSettings(true,0), 
											createAdvertiseData(uu, serviceData),
											mAdvertiseCallback);
}
 
開發者ID:blxble,項目名稱:mesh-core-on-android,代碼行數:13,代碼來源:JniCallbacks.java

示例3: parcelFromShortValue

import android.os.ParcelUuid; //導入方法依賴的package包/類
/**
 * Obtains a ParcelUuid from Short style value.
 *
 * @param uuidShortValue the Short style UUID value.
 * @return an UUID instance.
 */
@NonNull
public static ParcelUuid parcelFromShortValue(final int uuidShortValue) {
    return ParcelUuid.fromString(UUID_LONG_STYLE_PREFIX + String.format("%04X", uuidShortValue & 0xffff) + UUID_LONG_STYLE_POSTFIX);
}
 
開發者ID:kshoji,項目名稱:BLE-HID-Peripheral-for-Android,代碼行數:11,代碼來源:BleUuidUtils.java


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