当前位置: 首页 > news >正文

旅游投资公司网站建设ppt模板制作网页的基本技术标准

旅游投资公司网站建设ppt模板,制作网页的基本技术标准,商会信息平台网站建设方案,昆明关键词优化Harmony Ble蓝牙App#xff08;四#xff09;描述符 前言正文一、优化二、描述① 概念② 描述提供者③ 显示描述符 三、源码 前言 上一篇中了解了特性和属性#xff0c;同时显示设备蓝牙服务下的特性和属性#xff0c;本文中就需要来使用这些特性和属性来完成一些功能。 正… Harmony Ble蓝牙App四描述符 前言正文一、优化二、描述① 概念② 描述提供者③ 显示描述符 三、源码 前言 上一篇中了解了特性和属性同时显示设备蓝牙服务下的特性和属性本文中就需要来使用这些特性和属性来完成一些功能。 正文 上一篇完成了特性这一篇中我们增加描述符的处理以及一些简单的优化。 一、优化 这样看起来主页面在没有设备信息的时候不会显得单调那么还有一个小细节就是当设备的蓝牙服务和特性不属于SIG定义的是厂商自定义时我们最好就显示完整的UUID为了方便使用在BleUtils类中增加如下代码 public static final String APP_NAME GoodBle;public static final String UNKNOWN_DEVICE Unknown device;public static final String UNKNOWN_SERVICE Unknown Service;public static final String UNKNOWN_CHARACTERISTICS Unknown Characteristics;public static final String UNKNOWN_DESCRIPTOR Unknown Descriptor;public static final String BROADCAST Broadcast;public static final String READ Read;public static final String WRITE_NO_RESPONSE Write No Response;public static final String WRITE Write;public static final String NOTIFY Notify;public static final String INDICATE Indicate;public static final String AUTHENTICATED_SIGNED_WRITES Authenticated Signed Writes;public static final String EXTENDED_PROPERTIES Extended Properties;这里定义了一些常量包括未知服务、未知特性和一些其他的属性这样做在修改的时候修改一个常量就可以了。下面我们分别修改一下BleUtils中的getServiceName()和getCharacteristicsName()方法的else的值为UNKNOWN_SERVICE和UNKNOWN_CHARACTERISTICS剩下的就可以在服务适配器和特性适配器中去修改了首先是服务适配器修改 Overridepublic Component getComponent(int position, Component component, ComponentContainer componentContainer) {...String serviceName BleUtils.getServiceName(service.getUuid());holder.txServiceName.setText(serviceName);holder.txUuid.setText(serviceName.equals(BleUtils.UNKNOWN_SERVICE) ? service.getUuid().toString() : BleUtils.getShortUUID(service.getUuid()));return cpt;} 在设置uuid的时候根据服务的名称进行判断如果是标准的SIG服务则使用短UUID不是则使用完整的UUID。默认是小写的你也可以改成大写。 那么同样特性适配器也改一下 Overridepublic Component getComponent(int position, Component component, ComponentContainer componentContainer) {...String characteristicsName BleUtils.getCharacteristicsName(characteristic.getUuid());holder.txCharacterName.setText(characteristicsName);holder.txUuid.setText(BleUtils.getShortUUID(characteristic.getUuid()));holder.txUuid.setText(characteristicsName.equals(BleUtils.UNKNOWN_CHARACTERISTICS) ? characteristic.getUuid().toString() : BleUtils.getShortUUID(characteristic.getUuid()));return cpt;}再运行一下对于未知设备服务和特性的UUID就会显示完整的值。 二、描述 在上一篇中提到了特性和属性特性有那些功能是属性决定的那么描述又是做什么的呢 ① 概念 在蓝牙低功耗BLE中Descriptor描述符是用于提供有关特征值的额外信息的数据结构。Descriptor 提供了特定特征的更详细描述和配置选项。Descriptor 是特征Characteristics的子项用于描述特征的特定属性或行为。每个特征可以有一个或多个 Descriptor。 以下是一些常见的 BLE Descriptor 类型及其含义 声明 Descriptor这个 Descriptor 用于描述特征的声明信息包括特征的唯一标识符、权限、值的格式和其他标志。它提供了特征的基本信息供其他设备了解。 用户描述User DescriptionDescriptor用于提供特征的人类可读描述信息。这个描述可以是特征的名称、标签或其他有关特征的说明性文字。 配置 Descriptor用于描述特征的配置选项。这个 Descriptor 可以包含特征的可选设置例如采样率、测量单位或阈值等。 通知 Descriptor用于配置特征是否支持通知功能。这个 Descriptor 可以用于使设备可以接收特征值变化的通知。 线性区间 Descriptor用于描述特征值的线性关系例如数值范围和步长等。 客户端配置 Descriptor用于允许远程设备例如中心设备订阅特征值的变化通知这个很重要。 这些只是一些常见的 BLE Descriptor 类型和其含义的示例实际上可以根据应用需求定义自定义的 Descriptor。 Descriptor 提供了对特征更详细的描述和配置它们可以通过蓝牙协议进行传输和访问。在 BLE 应用中Descriptor 充当了配置和元数据信息的重要角色帮助设备之间准确地交换和理解数据。 那么现在你已经了解了描述符的作用了而我们目前的特性下还没有描述符的注意不是每一个特性都有描述符下面我们就来把描述符写出来了。首先我们在item_characteristic.xml中增加一个描述的列表控件代码如下所示 ?xml version1.0 encodingutf-8? DependentLayoutxmlns:ohoshttp://schemas.huawei.com/res/ohosohos:heightmatch_contentohos:widthmatch_parentohos:background_element#FFFFFFohos:bottom_margin2vpohos:bottom_padding8vpohos:end_padding16vpohos:start_padding16vpohos:top_padding8vpTextohos:id$id:tx_character_nameohos:heightmatch_contentohos:widthmatch_contentohos:background_element$color:blackohos:text服务ohos:text_size16fp/Textohos:id$id:tx_uuid_titleohos:heightmatch_contentohos:widthmatch_contentohos:below$id:tx_character_nameohos:textUUIDohos:text_color$color:grayohos:text_size16fpohos:top_margin2vp/Textohos:id$id:tx_uuidohos:heightmatch_contentohos:widthmatch_contentohos:background_element$color:blackohos:below$id:tx_character_nameohos:end_of$id:tx_uuid_titleohos:textUUIDohos:text_size16fpohos:top_margin2vp/Textohos:id$id:tx_property_titleohos:heightmatch_contentohos:widthmatch_contentohos:below$id:tx_uuid_titleohos:textPropertiesohos:text_color$color:grayohos:text_size16fpohos:top_margin2vp/ListContainerohos:id$id:lc_propertyohos:heightmatch_contentohos:widthmatch_parentohos:align_bottom$id:tx_property_titleohos:align_top$id:tx_property_titleohos:end_of$id:tx_property_titleohos:orientationhorizontal/DirectionalLayoutohos:id$id:lay_descriptorsohos:heightmatch_contentohos:widthmatch_parentohos:below$id:tx_property_titleohos:orientationverticalTextohos:heightmatch_contentohos:widthmatch_contentohos:textDescriptors:ohos:text_color#000000ohos:text_size16fpohos:top_margin2vp/ListContainerohos:id$id:lc_descriptorohos:heightmatch_contentohos:widthmatch_parent//DirectionalLayout/DependentLayout下面我们就可以正式去写描述符的提供者了。 ② 描述提供者 首先在layout下增加一个item_descriptor.xml代码如下所示 ?xml version1.0 encodingutf-8? DependentLayoutxmlns:ohoshttp://schemas.huawei.com/res/ohosohos:heightmatch_contentohos:widthmatch_parentohos:background_element#FFFFFFohos:bottom_margin2vpohos:bottom_padding4vpohos:top_padding4vpTextohos:id$id:tx_descriptor_nameohos:heightmatch_contentohos:widthmatch_contentohos:background_element$color:blackohos:text描述ohos:text_size16fp/Textohos:id$id:tx_uuid_titleohos:heightmatch_contentohos:widthmatch_contentohos:below$id:tx_descriptor_nameohos:textUUIDohos:text_color$color:grayohos:text_size16fpohos:top_margin2vp/Textohos:id$id:tx_uuidohos:heightmatch_contentohos:widthmatch_contentohos:background_element$color:blackohos:below$id:tx_descriptor_nameohos:end_of$id:tx_uuid_titleohos:textUUIDohos:text_size16fpohos:top_margin2vp//DependentLayout然后关于描述符的名称我们可以在BleUtils中写一个函数代码如下所示 public static String getDescriptorName(UUID uuid) {String targetUuid getShortUUID(uuid);switch (targetUuid) {case 0x2900:return Characteristic Extended Properties;case 0x2901:return Characteristic User Description;case 0x2902:return Client Characteristic Configuration;case 0x2903:return Server Characteristic Configuration;case 0x2904:return Characteristic Presentation Format;case 0x2905:return Characteristic Aggregate Format;case 0x2906:return Valid Range;case 0x2907:return External Report Reference;case 0x2908:return Report Reference;case 0x2909:return Number of Digitals;case 0x290A:return Value Trigger Setting;case 0x290B:return Environmental Sensing Configuration;case 0x290C:return Environmental Sensing Measurement;case 0x290D:return Environmental Sensing Trigger Setting;case 0x290E:return Time Trigger Setting;case 0x290F:return Complete BR-EDR Transport Block Data;case 0x2910:return Observation Schedule;case 0x2911:return Valid Range and Accuracy;default:return UNKNOWN_DESCRIPTOR;}}下面我们写描述符适配器在provider包下新建一个DescriptorProvider类代码如下所示 public class DescriptorProvider extends BaseItemProvider {private final ListGattDescriptor descriptorList;private final AbilitySlice slice;public DescriptorProvider(ListGattDescriptor list, AbilitySlice slice) {this.descriptorList list;this.slice slice;}Overridepublic int getCount() {return descriptorList null ? 0 : descriptorList.size();}Overridepublic Object getItem(int position) {if (descriptorList ! null position 0 position descriptorList.size()) {return descriptorList.get(position);}return null;}Overridepublic long getItemId(int position) {return position;}Overridepublic Component getComponent(int position, Component component, ComponentContainer componentContainer) {final Component cpt;DescriptorHolder holder;GattDescriptor descriptor descriptorList.get(position);if (component null) {cpt LayoutScatter.getInstance(slice).parse(ResourceTable.Layout_item_descriptor, null, false);holder new DescriptorHolder(cpt);//将获取到的子组件信息绑定到列表项的实例中cpt.setTag(holder);} else {cpt component;// 从缓存中获取到列表项实例后直接使用绑定的子组件信息进行数据填充。holder (DescriptorHolder) cpt.getTag();}String descriptorName BleUtils.getDescriptorName(descriptor.getUuid());holder.txDescriptorName.setText(descriptorName);holder.txUuid.setText(descriptorName.equals(BleUtils.UNKNOWN_DESCRIPTOR) ? descriptor.getUuid().toString() : BleUtils.getShortUUID(descriptor.getUuid()));return cpt;}/*** 用于保存列表项的子组件信息*/public static class DescriptorHolder {Text txDescriptorName;Text txUuid;ListContainer lcProperty;public DescriptorHolder(Component component) {txDescriptorName (Text) component.findComponentById(ResourceTable.Id_tx_descriptor_name);txUuid (Text) component.findComponentById(ResourceTable.Id_tx_uuid);lcProperty (ListContainer) component.findComponentById(ResourceTable.Id_lc_property);}} } 可以看这里的代码同样对于自定义UUID展示完整数据对于SIG的展示短UUID。 ③ 显示描述符 接下来就是在特性适配器中去加载显示描述符数据修改CharacteristicProvider中代码所示代码 public class CharacteristicProvider extends BaseItemProvider {private final ListGattCharacteristic characteristicList;private final AbilitySlice slice;private final OperateCallback operateCallback;public CharacteristicProvider(ListGattCharacteristic list, AbilitySlice slice, OperateCallback operateCallback) {this.characteristicList list;this.slice slice;this.operateCallback operateCallback;}Overridepublic int getCount() {return characteristicList null ? 0 : characteristicList.size();}Overridepublic Object getItem(int position) {if (characteristicList ! null position 0 position characteristicList.size()) {return characteristicList.get(position);}return null;}Overridepublic long getItemId(int position) {return position;}Overridepublic Component getComponent(int position, Component component, ComponentContainer componentContainer) {final Component cpt;CharacteristicHolder holder;GattCharacteristic characteristic characteristicList.get(position);if (component null) {cpt LayoutScatter.getInstance(slice).parse(ResourceTable.Layout_item_characteristic, null, false);holder new CharacteristicHolder(cpt);//将获取到的子组件信息绑定到列表项的实例中cpt.setTag(holder);} else {cpt component;// 从缓存中获取到列表项实例后直接使用绑定的子组件信息进行数据填充。holder (CharacteristicHolder) cpt.getTag();}String characteristicsName BleUtils.getCharacteristicsName(characteristic.getUuid());holder.txCharacterName.setText(characteristicsName);holder.txUuid.setText(BleUtils.getShortUUID(characteristic.getUuid()));holder.txUuid.setText(characteristicsName.equals(BleUtils.UNKNOWN_CHARACTERISTICS) ? characteristic.getUuid().toString() : BleUtils.getShortUUID(characteristic.getUuid()));ListString properties BleUtils.getProperties(characteristic.getProperties());//加载属性holder.lcProperty.setItemProvider(new PropertyProvider(properties, slice));//属性列表点击holder.lcProperty.setItemClickedListener((listContainer, component1, propertyPosition, l) - {if (operateCallback ! null) {//属性操作回调operateCallback.onPropertyOperate(characteristic, properties.get(propertyPosition));}});//加载特性下的描述if (characteristic.getDescriptors().size() 0) {holder.lcDescriptor.setItemProvider(new DescriptorProvider(characteristic.getDescriptors(), slice));} else {holder.layDescriptor.setVisibility(Component.HIDE);}return cpt;}/*** 用于保存列表项的子组件信息*/public static class CharacteristicHolder {Text txCharacterName;Text txUuid;ListContainer lcProperty;DirectionalLayout layDescriptor;ListContainer lcDescriptor;public CharacteristicHolder(Component component) {txCharacterName (Text) component.findComponentById(ResourceTable.Id_tx_character_name);txUuid (Text) component.findComponentById(ResourceTable.Id_tx_uuid);lcProperty (ListContainer) component.findComponentById(ResourceTable.Id_lc_property);layDescriptor (DirectionalLayout) component.findComponentById(ResourceTable.Id_lay_descriptors);lcDescriptor (ListContainer) component.findComponentById(ResourceTable.Id_lc_descriptor);}} } 请注意这一段代码 //加载特性下的描述if (characteristic.getDescriptors().size() 0) {holder.lcDescriptor.setItemProvider(new DescriptorProvider(characteristic.getDescriptors(), slice));} else {holder.layDescriptor.setVisibility(Component.HIDE);}这个判断和重要因为不是每一个特性都有描述符这个前面已经说过了没有的我们就直接隐藏对应的描述符布局否则就加载描述符数据同时我们还需要修改一下服务UUID和特性UUID的Text控件的属性因为UUID过长的话可能一行无法显示出来。 改动如下 服务uuid Textohos:id$id:tx_uuidohos:heightmatch_contentohos:widthmatch_contentohos:background_element$color:blackohos:below$id:tx_service_nameohos:truncation_modeellipsis_at_middleohos:end_margin24vpohos:textUUIDohos:end_of$id:tx_uuid_titleohos:align_end$id:iv_stateohos:text_size16fpohos:top_margin2vp/特性uuid Textohos:id$id:tx_uuidohos:heightmatch_contentohos:widthmatch_contentohos:background_element$color:blackohos:below$id:tx_character_nameohos:end_of$id:tx_uuid_titleohos:truncation_modeellipsis_at_middleohos:textUUIDohos:text_size16fpohos:top_margin2vp/下面运行看一下。 通过这个图就可以清晰的的看到特性下的描述符本文就到这里了。 三、源码 如果对你有所帮助的话不妨 Star 或 Fork山高水长后会有期~ 源码地址HarmonyBle-Java
http://www.dnsts.com.cn/news/63032.html

相关文章:

  • 凡科 做网站如何做网站排名
  • ps做网站像素大小凡科手机网站建设开发
  • 西安网站建设产品品质网站建设
  • 北京网站推广排名公司自己做的表白网站
  • 网站建设中请稍后再访问在线网页代理免费版
  • 外贸网站建设制作教程全网关键词搜索工具
  • 做网站哪个系统最安全一键优化助手
  • 网站建设 个人服务器如何申请小程序
  • 做网站的外包公司手机欧美视频网站模板下载 迅雷下载 迅雷下载地址
  • 企业网站托管方案内容具体有哪些网站开发设计有限公司
  • 济南做设计公司网站网站正在建设中的网页怎么做
  • 网站定制套餐wordpress主题修改头部
  • 做外汇网站代理公司管理系统网站
  • 乡镇医院网站建设下载168网站
  • 收录网站是什么意思什么网站建设最简单
  • 网站推广的网站作用网店美工的技能要求
  • 重庆建造师管理系统查询系统最好的网站优化公司
  • 好网站开发公司网站建设不完整什么意思
  • php网站开发实例视频教程html页面跳转
  • 有免费搭建app的网站吗做网站公司(深圳信科)
  • 珠海左右创意园网站开发湘西网站制作
  • 企业工商查询金沙百度seo优化公司
  • 宣传型企业网站工程建设信息网站资质公告
  • 国家高新技术企业税收优惠政策惠州网站建设乐云seo在线制作
  • 出国看病网站开发河北秦皇岛建设局网站
  • 免费模版网站在视频网站中做节目怎么挣钱
  • 增加清晰度的网站网站刚建好怎么做能让百度收录
  • 一些简约大气的网站官网抖音下载
  • 北京市门头沟有没有做网站的建设工程合同的性质是
  • 在线购物网站怎么做百度视频免费高清网站