在线观看www成人影院-在线观看www日本免费网站-在线观看www视频-在线观看操-欧美18在线-欧美1级

0
  • 聊天消息
  • 系統(tǒng)消息
  • 評論與回復
登錄后你可以
  • 下載海量資料
  • 學習在線課程
  • 觀看技術(shù)視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會員中心
創(chuàng)作中心

完善資料讓更多小伙伴認識你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

HarmonyOS開發(fā)實例:【分布式郵件】

jf_46214456 ? 來源:jf_46214456 ? 作者:jf_46214456 ? 2024-04-17 10:29 ? 次閱讀

概述

基于TS擴展的聲明式開發(fā)范式編程語言編寫的一個分布式郵件系統(tǒng),可以由一臺設(shè)備拉起另一臺設(shè)備,每次改動郵件內(nèi)容,都會同步更新兩臺設(shè)備的信息。效果圖如下:

搭建OpenHarmony開發(fā)環(huán)境

完成本篇Codelab我們首先要完成開發(fā)環(huán)境的搭建,本示例以Hi3516DV300開發(fā)板為例,參照以下步驟進行:

  1. [獲取OpenHarmony系統(tǒng)版本]:標準系統(tǒng)解決方案(二進制)。
    以3.0版本為例:
  2. 搭建燒錄環(huán)境。
    1. [完成DevEco Device Tool的安裝]
    2. [完成Hi3516開發(fā)板的燒錄]
    3. 鴻蒙開發(fā)指導:[gitee.com/li-shizhen-skin/harmony-os/blob/master/README.md]
  3. 搭建開發(fā)環(huán)境。
    1. 開始前請參考[工具準備],完成DevEco Studio的安裝和開發(fā)環(huán)境配置。
    2. 開發(fā)環(huán)境配置完成后,請參考[使用工程向?qū)創(chuàng)建工程(模板選擇“Empty Ability”),選擇JS或者eTS語言開發(fā)。
    3. 工程創(chuàng)建完成后,選擇使用[真機進行調(diào)測]。
      2.鴻蒙HarmonyOS與OpenHarmony技術(shù)知識籽料+mau123789是v直接拿

搜狗高速瀏覽器截圖20240326151450.png

分布式組網(wǎng)

本章節(jié)以系統(tǒng)自帶的音樂播放器為例,介紹如何完成兩臺設(shè)備的分布式組網(wǎng)。

  1. 硬件準備:準備兩臺燒錄相同的版本系統(tǒng)的Hi3516DV300開發(fā)板A、B、一根網(wǎng)線及TYPE-C轉(zhuǎn)USB線。

  2. 保證開發(fā)板A、B上電開機狀態(tài),網(wǎng)線兩端分別連接開發(fā)板A、B的網(wǎng)口,將TYPE-C轉(zhuǎn)USB線先連接A,使用hdc_std.exe,在命令行輸入hdc_std shell ifconfig eth0 192.168.3.125,設(shè)置成功后,將TYPE-C轉(zhuǎn)USB線連接B,在命令行輸入hdc_std shell ifconfig eth0 192.168.3.126即可。

  3. 將設(shè)備A,B設(shè)置為互相信任的設(shè)備。

    • 找到系統(tǒng)應用“音樂”。

    ![](https://p3-juejin.byteimg.com/tos-cn-i


k3u1fbpfcp/c3cda779064e4a9285c136d30dbd05b6~tplv-k3u1fbpfcp-jj-mark:0:0:0:0:q75.image#?w=1673&h=695&s=2576059&e=png&b=026e8f)

  • 設(shè)備A打開音樂,點擊左下角流轉(zhuǎn)按鈕,彈出列表框,在列表中會展示遠端設(shè)備的id。
  • 選擇遠端設(shè)備B的id,另一臺開發(fā)板(設(shè)備B)會彈出驗證的選項框。
  • 設(shè)備B點擊允許,設(shè)備B將會彈出隨機PIN碼,將設(shè)備B的PIN碼輸入到設(shè)備A的PIN碼填入框中。


配網(wǎng)完畢。

代碼結(jié)構(gòu)解讀

本篇Codelab只對核心代碼進行講解,首先來介紹下整個工程的代碼結(jié)構(gòu):

  • MainAbility:存放應用主頁面。
    • pages/index.ets:應用主頁面。
  • model:存放獲取組網(wǎng)內(nèi)的設(shè)備列表相關(guān)文件。
    • RemoteDeviceModel.ets:獲取組網(wǎng)內(nèi)的設(shè)備列表。
  • ServiceAbility:存放ServiceAbility相關(guān)文件。
    • service.ts:service服務(wù),用于跨設(shè)備連接后通訊。
  • resources :存放工程使用到的資源文件。
    • resources/rawfile:存放工程中使用的圖片資源文件。
  • config.json:配置文件。

實現(xiàn)頁面布局和樣式

在本章節(jié)中,您將學會如何制作一個簡單的郵件界面。

  1. 實現(xiàn)主頁面布局和樣式。

    • 在MainAbility/pages/index.ets 主界面文件中布局整個郵件頁面,包括收件人、發(fā)件人、主題、內(nèi)容等等,代碼如下:

      @Entry
      @Component
      struct Index {
        private imageList: any[]= []
        @Provide dataList: string[]= ['xiaohua@128.com','xiaoming@128.com','假期溫馨提示','2022年新春佳節(jié)即將來臨,請同學們細讀節(jié)前相關(guān)溫馨提示,保持辦公場所環(huán)境整潔,假期期間注意信息及個人安全,預祝全體同學新春快樂,虎虎生威!']
      
        dialogController: CustomDialogController = new CustomDialogController({
          builder: CustomDialogExample({ cancel: this.onCancel, confirm: this.onAccept }),
          cancel: this.existApp,
          autoCancel: true
        })
      
        build() {
          Flex({ direction: FlexDirection.Column, justifyContent: FlexAlign.SpaceBetween }) {
            Column() {
              Row() {
                Flex({ direction: FlexDirection.Row, justifyContent: FlexAlign.SpaceBetween, alignItems: ItemAlign.Center }) {
                  Text('?').fontSize(20).fontColor('#000000')
                  Button('發(fā)送').width(70).fontSize(14).fontColor('#ffffff').backgroundColor('#fc4646')
                    .onClick(() = > {
                      RegisterDeviceListCallback();
                      this.dialogController.open();
                    })
                }
                .height(50)
                .padding({ top: 10, right: 15, bottom: 10, left: 15 })
              }
      
              Column() {
                Flex({ direction: FlexDirection.Row, alignItems: ItemAlign.Center }) {
                  Text('收件人').width(70).height(30).fontSize(15).fontColor('#969393')
                  Text(this.dataList[0]).width('100%').height(30).fontSize(15).fontColor('#000000')
                }
                .padding({ top: 5, right: 15, bottom: 5, left: 15 })
      
                Text().width('100%').height(1).backgroundColor('#f8f6f6')
      
                Flex({ direction: FlexDirection.Row, alignItems: ItemAlign.Center }) {
                  Text('發(fā)件人').width(70).height(30).fontSize(15).fontColor('#969393')
                  Text(this.dataList[1]).width('100%').height(30).fontSize(15).fontColor('#000000')
                }
                .padding({ top: 5, right: 15, bottom: 5, left: 15 })
      
                Text().width('100%').height(1).backgroundColor('#f8f6f6')
      
                Flex({ direction: FlexDirection.Row, alignItems: ItemAlign.Center }) {
                  Text('主題').width(50).height(30).fontSize(15).fontColor('#969393')
                  Text(this.dataList[2]).width('100%').height(30).fontSize(15).fontColor('#000000')
                }
                .padding({ top: 5, right: 15, bottom: 5, left: 15 })
      
                Text().width('100%').height(1).backgroundColor('#f8f6f6')
                TextArea({ placeholder: 'input your word', text: this.dataList[3]}).height('100%').width('100%')
                  .onChange((value: string) = > {
                    this.dataList[3] = value
                    if(mRemote){
                      sendMessageToRemoteService(JSON.stringify(this.dataList));
                    }
                      onDisconnectService();
                })
              }
            }
      
            Column() {
              Flex({ direction: FlexDirection.Row }) {
                List() {
                  ForEach(this.imageList, (item) = > {
                    ListItem() {
                      Image(item).width(50).height(50).objectFit(ImageFit.Contain)
                    }.editable(true)
                  }, item = > item)
                }
                .listDirection(Axis.Horizontal) // 排列方向
                .divider({ strokeWidth: 2, color: 0xFFFFFF, startMargin: 20, endMargin: 20 }) // 每行之間的分界線
              }.width('100%').height(50).backgroundColor('#ccc')
      
              Text().width('100%').height(1).backgroundColor('#f8f6f6')
              Flex({ direction: FlexDirection.Row, justifyContent: FlexAlign.SpaceBetween }) {
                Flex({ direction: FlexDirection.Row, alignItems: ItemAlign.Center }) {
                  Button({ stateEffect: false }) {
                    Image($rawfile('icon_photo.png')).width(20).height(20)
                  }.backgroundColor('#ffffff').margin({ right: 20 })
                  .onClick(() = > {
                    RegisterDeviceListCallback();
                    this.dialogController.open();
                  })
      
                  Button({ stateEffect: false }) {
                    Image($rawfile('icon_at.png')).width(20).height(20)
                  }.backgroundColor('#ffffff')
                }
      
                Flex({ direction: FlexDirection.Row, justifyContent: FlexAlign.End }) {
                  Button({ stateEffect: false }) {
                    Image($rawfile('icon_distributed.png')).width(20).height(20)
                  }.backgroundColor('#ffffff')
                  .onClick(() = > {
                     this.getDeviceList()
                  })
      
                  Button({ stateEffect: false }) {
                    Image($rawfile('icon_timer.png')).width(20).height(20)
                  }.backgroundColor('#ffffff').margin({ left: 10, right: 10 })
      
                  Button({ stateEffect: false }) {
                    Image($rawfile('icon_enclosure.png')).width(20).height(20)
                  }.backgroundColor('#ffffff')
                }
              }.height(50).padding(15)
            }
          }.width('100%').padding({ top: 5, bottom: 15 })
        }
      }
      

      在入口組件的生命周期函數(shù)aboutToAppear()中調(diào)用訂閱事件。如果Ability是被其他設(shè)備拉起的,在aboutToAppear()中調(diào)用featureAbility.getWant(),可通過want中的參數(shù)重新初始化dataList數(shù)組,入口組件的生命周期函數(shù)aboutToAppear()代碼如下:

      async aboutToAppear() {
          this.subscribeEvent();
          let self = this;
          // 當被拉起時,通過want傳遞的參數(shù)同步對端界面UI
          await featureAbility.getWant((error, want) = > {
            var status = want.parameters;
            if (want.parameters.dataList) {
              self.dataList = JSON.parse(status.dataList)
              // 遠端被拉起后,連接對端的service
              if (want.parameters.remoteDeviceId) {
                let remoteDeviceId = want.parameters.remoteDeviceId
                onConnectRemoteService(remoteDeviceId)
              }
            }
          });
        }
      
  2. 給"發(fā)送"按鈕添加點擊事件。
    點擊"發(fā)送"按鈕,調(diào)用拉起彈窗函數(shù),彈窗中顯示可拉起的同局域網(wǎng)下的設(shè)備,代碼如下:

    Button('發(fā)送').width(70).fontSize(14).fontColor('#ffffff').backgroundColor('#fc4646')
          .onClick(() = > {
            RegisterDeviceListCallback();
            this.dialogController.open();
          })
    
  3. 給內(nèi)容區(qū)域Textarea添加onChange事件。
    內(nèi)容區(qū)域文字變化會調(diào)用onChange()方法,每一次的變化都會調(diào)用sendMessageToRemoteService()方法去同步另一個設(shè)備的數(shù)據(jù)。其中onChange()和sendMessageToRemoteService()方法代碼如下:

    TextArea({ placeholder: 'input your word', text: this.dataList[3]}).height('100%').width('100%')
        .onChange((value: string) = > {
          this.dataList[3] = value
          if(mRemote){
            sendMessageToRemoteService(JSON.stringify(this.dataList));
          }
          onDisconnectService();
      })
    
    async function sendMessageToRemoteService(dataList) {
      if (mRemote == null) {
        prompt.showToast({
          message: "mRemote is null"
        });
        return;
      }
      let option = new rpc.MessageOption();
      let data = new rpc.MessageParcel();
      let reply = new rpc.MessageParcel();
      data.writeStringArray(JSON.parse(dataList));
      prompt.showToast({
        message: "sendMessageToRemoteService" + dataList,
        duration: 3000
      });
    
      await mRemote.sendRequest(1, data, reply, option);
      let msg = reply.readInt();
    
    }
    

拉起遠端FA及連接遠端Service服務(wù)

在本章節(jié)中,您將學會如何拉起在同一組網(wǎng)內(nèi)的設(shè)備上的FA,并且連接遠端Service服務(wù)。

  1. 調(diào)用featureAbility.startAbility()方法,拉起遠端FA,并同步界面UI。
    點擊"分布式拉起"按鈕,調(diào)用RegisterDeviceListCallback()發(fā)現(xiàn)設(shè)備列表,并彈出設(shè)備列表選擇框CustomDialogExample,選擇設(shè)備后拉起遠端FA。CustomDialogExample()代碼如下:

    // 設(shè)備列表彈出框
    @CustomDialog
    struct CustomDialogExample {
      @State editFlag: boolean = false
      @Consume imageIndexForPosition : number[]
      @Consume pictureList: string[]
      controller: CustomDialogController
      cancel: () = > void
      confirm: () = > void
      build() {
        Column() {
          List({ space: 10, initialIndex: 0 }) {
            ForEach(DeviceIdList, (item) = > {
              ListItem() {
                Row() {
                  Text(item)
                    .width('87%').height(50).fontSize(10)
                    .textAlign(TextAlign.Center).borderRadius(10).backgroundColor(0xFFFFFF)
                    .onClick(() = > {
                      onStartRemoteAbility(item,this.imageIndexForPosition,this.pictureList);
                      this.controller.close();
                    })
                  Radio({value:item})
                    .onChange((isChecked) = > {
                      onStartRemoteAbility(item,this.imageIndexForPosition,this.pictureList);
                      this.controller.close();
                    }).checked(false)
                }
              }.editable(this.editFlag)
            }, item = > item)
          }
        }.width('100%').height(200).backgroundColor(0xDCDCDC).padding({ top: 5 })
      }
    }
    

    點擊Text組件或者Radio組件都會調(diào)用onStartRemoteAbility()方法拉起遠端FA,onStartRemoteAbility()代碼如下:

    function onStartRemoteAbility(deviceId,imageIndexForPosition,pictureList: string[]) {
      AuthDevice(deviceId);
      let numDevices = remoteDeviceModel.deviceList.length;
      if (numDevices === 0) {
        prompt.showToast({
          message: "onStartRemoteAbility no device found"
        });
        return;
      }
    
      var params = {
        imageIndexForPosition: JSON.stringify(imageIndexForPosition),
        pictureList : JSON.stringify(pictureList),
        remoteDeviceId : localDeviceId
      }
      var wantValue = {
        bundleName: 'com.huawei.cookbook',
        abilityName: 'com.example.openharmonypicturegame.MainAbility',
        deviceId: deviceId,
        parameters: params
      };
      featureAbility.startAbility({
        want: wantValue
      }).then((data) = > {
        // 拉起遠端后,連接遠端service
        onConnectRemoteService(deviceId)
      });
    }
    
  2. 調(diào)用featureAbility.connectAbility方法,連接遠端Service服務(wù),連接成功后返回remote對象。
    在featureAbility.startAbility()成功的回調(diào)中調(diào)用onConnectRemoteService()方法,onConnectRemoteService()方法代碼如下:

    // 連接遠端Service
    async function onConnectRemoteService(deviceId) {
      // 連接成功的回調(diào)
      async function onConnectCallback(element, remote) {
         mRemote = remote;
      }
      // Service異常死亡的回調(diào)
      function onDisconnectCallback(element) {
      }
      // 連接失敗的回調(diào)
      function onFailedCallback(code) {
        prompt.showToast({
          message: "onConnectRemoteService onFailed: " + code
        });
      }
      let numDevices = remoteDeviceModel.deviceList.length;
      if (numDevices === 0) {
        prompt.showToast({
          message: "onConnectRemoteService no device found"
        });
        return;
      }
      connectedAbility = await featureAbility.connectAbility(
        {
          deviceId: deviceId,
          bundleName: "com.huawei.cookbook",
          abilityName: "com.example.openharmonypicturegame.ServiceAbility",
        },
        {
          onConnect: onConnectCallback,
          onDisconnect: onDisconnectCallback,
          onFailed: onFailedCallback,
        },
      );
    }
    

    在配置文件config.json需要設(shè)置ServiceAbility的屬性visible為true,代碼如下:

    "abilities": [
          ...
          {
            "visible": true,
            "srcPath": "ServiceAbility",
            "name": ".ServiceAbility",
            "icon": "$media:icon",
            "srcLanguage": "ets",
            "description": "$string:description_serviceability",
            "type": "service"
          }
    ],
    

    同時,Service側(cè)也需要在onConnect()時返回IRemoteObject,從而定義與Service進行通信接口。onConnect()需要返回一個IRemoteObject對象,OpenHarmony提供了IRemoteObject的默認實現(xiàn),通過繼承rpc.RemoteObject來創(chuàng)建自定義的實現(xiàn)類。

    Service側(cè)把自身的實例返回給調(diào)用側(cè)的代碼如下:

    import rpc from "@ohos.rpc";
    import commonEvent from '@ohos.commonEvent';
    class FirstServiceAbilityStub extends rpc.RemoteObject{
        constructor(des) {
            if (typeof des === 'string') {
                super(des);
            } else {
                return null;
            }
        }
        onRemoteRequest(code, data, reply, option) {
            if (code === 1) {
                let arr = data.readIntArray();
                reply.writeInt(100);
                // 發(fā)布公共事件相關(guān)流程
    	    ...
    
    
            } else {
            }
            return true;
        }
    }
    
    export default {
        // 創(chuàng)建Service的時候調(diào)用,用于Service的初始化
        onStart() {
        },
        // 在Service銷毀時調(diào)用。Service應通過實現(xiàn)此方法來清理任何資源,如關(guān)閉線程、注冊的偵聽器等。
        onStop() {
        },
        // 在Ability和Service連接時調(diào)用,該方法返回IRemoteObject對象,開發(fā)者可以在該回調(diào)函數(shù)中生成對應Service的IPC通信通道
        onConnect(want) {
            try {
                let value = JSON.stringify(want);
            } catch(error) {
            }
            return new FirstServiceAbilityStub("[pictureGame] first ts service stub");
        },
        // 在Ability與綁定的Service斷開連接時調(diào)用
        onDisconnect(want) {
            let value = JSON.stringify(want);
        },
        // 在Service創(chuàng)建完成之后調(diào)用,該方法在客戶端每次啟動該Service時都會調(diào)用
        onCommand(want, startId) {
            let value = JSON.stringify(want);
        }
    };
    

RPC跨設(shè)備通訊

在本章節(jié)中,您將學會在成功連接遠端Service服務(wù)的前提下,如何利用RPC進行跨設(shè)備通訊。

  1. 成功連接遠端Service服務(wù)的前提下,在正文部分增刪文字,都會完成一次跨設(shè)備通訊,假如在設(shè)備A端輸入文字,消息的傳遞是由設(shè)備A端的FA傳遞到設(shè)備B的Service服務(wù),發(fā)送消息的方法sendMessageToRemoteService()代碼如下:
    // 連接成功后發(fā)送消息
    async function sendMessageToRemoteService(imageIndexForPosition) {
      if (mRemote == null) {
        prompt.showToast({
          message: "mRemote is null"
        });
        return;
      }
      let option = new rpc.MessageOption();
      let data = new rpc.MessageParcel();
      let reply = new rpc.MessageParcel();
      data.writeIntArray(JSON.parse(imageIndexForPosition));
      await mRemote.sendRequest(1, data, reply, option);
      let msg = reply.readInt();
    }
    
  2. 在B端的Service接收消息,當A端成功連接B端Service服務(wù)后,在A端會返回一個remote對象,當A端remote對象調(diào)用sendRequest()方法后,在B端的Service中的onRemoteRequest()方法中會接收到發(fā)送的消息,其中繼承rpc.RemoteObject的類和onRemoteRequest()方法代碼如下:
    class FirstServiceAbilityStub extends rpc.RemoteObject{
        constructor(des) {
            if (typeof des === 'string') {
                super(des);
            } else {
                return null;
            }
        }
    
        onRemoteRequest(code, data, reply, option) {
            if (code === 1) {
                // 從data中接收數(shù)據(jù)
                let arr = data.readIntArray();
                // 回復接收成功標識
                reply.writeInt(100);
                // 發(fā)布公共事件相關(guān)流程
               ...
    
            } else {
            }
            return true;
        }
    }
    

FA訂閱公共事件

在九宮格組件PictureGrid的生命周期函數(shù)aboutToAppear()中,調(diào)用訂閱公共事件方法subscribeEvent(),用來訂閱"publish_moveImage"公共事件,subscribeEvent()代碼如下:

subscribeEvent(){
    let self = this;
    // 用于保存創(chuàng)建成功的訂閱者對象,后續(xù)使用其完成訂閱及退訂的動作
    var subscriber; 
    // 訂閱者信息
    var subscribeInfo = {
      events: ["publish_moveImage"],
      priority: 100

    };

    // 設(shè)置有序公共事件的結(jié)果代碼回調(diào)
    function SetCodeCallBack(err) {
    }
    // 設(shè)置有序公共事件的結(jié)果數(shù)據(jù)回調(diào)
    function SetDataCallBack(err) {
    }
    // 完成本次有序公共事件處理回調(diào)
    function FinishCommonEventCallBack(err) {
    }
    // 訂閱公共事件回調(diào)
    function SubscribeCallBack(err, data) {
      let msgData = data.data;
      let code = data.code;
      // 設(shè)置有序公共事件的結(jié)果代碼
      subscriber.setCode(code, SetCodeCallBack);
      // 設(shè)置有序公共事件的結(jié)果數(shù)據(jù)
      subscriber.setData(msgData, SetDataCallBack);
      // 完成本次有序公共事件處理
      subscriber.finishCommonEvent(FinishCommonEventCallBack)
      // 處理接收到的數(shù)據(jù)data
      self.imageIndexForPosition = data.parameters.imageIndexForPosition;
      self.pictureList = [];
      self.imageIndexForPosition.forEach(value = > {
        if (value == 9) {
          self.pictureList.push("--")
        } else {
          self.pictureList.push(`picture_0` + value + `.png`)
        }
      });

      self.onFinish();
    }

    // 創(chuàng)建訂閱者回調(diào)
    function CreateSubscriberCallBack(err, data) {
      subscriber = data;
      // 訂閱公共事件
      commonEvent.subscribe(subscriber, SubscribeCallBack);
    }

    // 創(chuàng)建訂閱者
    commonEvent.createSubscriber(subscribeInfo, CreateSubscriberCallBack);
 }

在FA中訂閱到Service服務(wù)發(fā)布的"publish_moveImage"事件后,在SubscribeCallBack()回調(diào)中重新賦值imageIndexForPosition數(shù)組與pictureList數(shù)組,從而同步更新界面UI。

service發(fā)布公共事件

當Service服務(wù)接收到消息后,在onRemoteRequest()發(fā)布公共事件,代碼如下:

onRemoteRequest(code, data, reply, option) {
    if (code === 1) {
	// 從data中接收數(shù)據(jù)
	let arr = data.readIntArray();
	// 回復接收成功標識
	reply.writeInt(100);
	// 公共事件相關(guān)信息
	var params ={
	    imageIndexForPosition: arr
	}
	var options = {
            // 公共事件的初始代碼
	    code: 1,
            // 公共事件的初始數(shù)據(jù)			
	    data: 'init data',、
            // 有序公共事件 	        
	    isOrdered: true, 	
	    bundleName: 'com.huawei.cookbook',
	    parameters: params

        }
	// 發(fā)布公共事件回調(diào)
	function PublishCallBack() {
	}
	// 發(fā)布公共事件
	commonEvent.publish("publish_moveImage", options, PublishCallBack);

	} else {
	}
	return true;
 }

在接收到消息后,把接收到的圖片位置數(shù)組放入params中,然后發(fā)布名稱為"publish_moveImage"的有序公共事件。

審核編輯 黃宇

聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場。文章及其配圖僅供工程師學習之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問題,請聯(lián)系本站處理。 舉報投訴
  • 分布式
    +關(guān)注

    關(guān)注

    1

    文章

    899

    瀏覽量

    74502
  • 鴻蒙
    +關(guān)注

    關(guān)注

    57

    文章

    2351

    瀏覽量

    42850
  • HarmonyOS
    +關(guān)注

    關(guān)注

    79

    文章

    1975

    瀏覽量

    30184
  • OpenHarmony
    +關(guān)注

    關(guān)注

    25

    文章

    3722

    瀏覽量

    16313
收藏 人收藏

    評論

    相關(guān)推薦

    HarmonyOS開發(fā)實例:【分布式數(shù)據(jù)管理】

    eTS中分布式數(shù)據(jù)管理的使用,包括KVManager對象實例的創(chuàng)建和KVStore數(shù)據(jù)流轉(zhuǎn)的使用。
    的頭像 發(fā)表于 04-11 09:57 ?938次閱讀
    <b class='flag-5'>HarmonyOS</b><b class='flag-5'>開發(fā)</b><b class='flag-5'>實例</b>:【<b class='flag-5'>分布式</b>數(shù)據(jù)管理】

    HarmonyOS應用開發(fā)-分布式任務(wù)調(diào)度

    1. 介紹本篇CodeLab將實現(xiàn)的內(nèi)容HarmonyOS是面向全場景多終端的分布式操作系統(tǒng),使得應用程序的開發(fā)打破了智能終端互通的性能和數(shù)據(jù)壁壘,業(yè)務(wù)邏輯原子化開發(fā),適配多端。通過一
    發(fā)表于 09-18 09:21

    HarmonyOS應用開發(fā)-分布式設(shè)計

    設(shè)計理念HarmonyOS 是面向未來全場景智慧生活方式的分布式操作系統(tǒng)。對消費者而言,HarmonyOS 將生活場景中的各類終端進行能力整合,形成“One Super Device”,以實現(xiàn)
    發(fā)表于 09-22 17:11

    HarmonyOS分布式數(shù)據(jù)庫,為啥這么牛?

    HarmonyOS 2.0 重要的三大核心技術(shù)底座之一:HarmonyOS 分布式數(shù)據(jù)管理平臺,也同步對開發(fā)者進行了細致的宣講,我作為開發(fā)
    發(fā)表于 11-19 15:38

    HarmonyOS分布式——跨設(shè)備遷移

    HarmonyOS分布式——跨設(shè)備遷移
    發(fā)表于 06-26 14:34

    HarmonyOS教程—基于跨設(shè)備遷移和分布式文件能力,實現(xiàn)郵件的跨設(shè)備編輯和附件的調(diào)用

    操作。想要解決這些問題,我們可以通過HarmonyOS分布式能力實現(xiàn)任務(wù)的跨設(shè)備遷移,保證業(yè)務(wù)在手機、平板等終端間無縫銜接,輕松的完成多設(shè)備之間的協(xié)同辦公。本篇Codelab文檔,我們通過模擬
    發(fā)表于 09-09 10:03

    HarmonyOS分布式應用框架深入解讀

    設(shè)備、分布式的能力及應用,二者具有無限能力。從開發(fā)者角度看,HarmonyOS上基本的組件分為3+1,其中3代表三個Ability,分別是:PageAbility:負責用戶界面的顯示
    發(fā)表于 11-22 15:15

    HDC2021技術(shù)分論壇:如何高效完成HarmonyOS分布式應用測試?

    作者:liuxun,HarmonyOS測試架構(gòu)師HarmonyOS是新一代的智能終端操作系統(tǒng),給開發(fā)者提供了設(shè)備發(fā)現(xiàn)、設(shè)備連接、跨設(shè)備調(diào)用等豐富的分布式API。隨著越來越多的
    發(fā)表于 12-13 14:55

    如何高效完成HarmonyOS分布式應用測試?

    作者:liuxun,HarmonyOS測試架構(gòu)師HarmonyOS是新一代的智能終端操作系統(tǒng),給開發(fā)者提供了設(shè)備發(fā)現(xiàn)、設(shè)備連接、跨設(shè)備調(diào)用等豐富的分布式API。隨著越來越多的
    發(fā)表于 12-13 18:07

    通過HarmonyOS分布式能力實現(xiàn)任務(wù)的跨設(shè)備遷移設(shè)計資料分享

    HarmonyOS頁面的分布式遷移和分布式文件的讀取當前,在不同的設(shè)備上遷移一個任務(wù)的操作通常十分復雜,比如路上在手機里寫了一半的郵件,回到家想切換到平板電腦更方便的處理;或者有時需要
    發(fā)表于 03-25 16:59

    HarmonyOS應用開發(fā)-EducationSystem分布式親子早教系統(tǒng)體驗

    HarmonyOS應用程序開發(fā),多屏協(xié)作交互和分布式跨設(shè)備傳輸?shù)慕?jīng)驗。 ? 從項目創(chuàng)建、代碼編寫到編譯、構(gòu)造、部署和操作。二、效果圖:完整代碼地址:https://gitee.com/jltfcloudcn/jump_to/tr
    發(fā)表于 07-25 10:23

    HarmonyOS應用開發(fā)-分布式語音攝像頭體驗

    一、組件說明使用HarmonyOS分布式文件系統(tǒng)和AI語音識別功能開發(fā)了一個分布式語音攝像頭。使用此相機應用程序,同一分布式網(wǎng)絡(luò)下的不同設(shè)備
    發(fā)表于 08-24 15:06

    HarmonyOS測試技術(shù)與實戰(zhàn)-HarmonyOS分布式應用特征與挑戰(zhàn)

     HDC 2021華為開發(fā)者大會HarmonyOS測試技術(shù)與實戰(zhàn)-HarmonyOS分布式應用特征與挑戰(zhàn)
    的頭像 發(fā)表于 10-23 14:41 ?1687次閱讀
    <b class='flag-5'>HarmonyOS</b>測試技術(shù)與實戰(zhàn)-<b class='flag-5'>HarmonyOS</b><b class='flag-5'>分布式</b>應用特征與挑戰(zhàn)

    HarmonyOS測試技術(shù)與實戰(zhàn)-分布式應用測試解決方案

    HDC 2021華為開發(fā)者大會HarmonyOS測試技術(shù)與實戰(zhàn)-HarmonyOS分布式應用測試解決方案
    的頭像 發(fā)表于 10-23 14:48 ?1592次閱讀
    <b class='flag-5'>HarmonyOS</b>測試技術(shù)與實戰(zhàn)-<b class='flag-5'>分布式</b>應用測試解決方案

    HarmonyOS分布式應用上架問題分析

    HarmonyOS是新一代的智能終端操作系統(tǒng),給開發(fā)者提供了設(shè)備發(fā)現(xiàn)、設(shè)備連接、跨設(shè)備調(diào)用等豐富的分布式API。隨著越來越多的開發(fā)者投入到Harmo
    的頭像 發(fā)表于 12-24 17:56 ?1912次閱讀
    <b class='flag-5'>HarmonyOS</b><b class='flag-5'>分布式</b>應用上架問題分析
    主站蜘蛛池模板: 精品视频卡1卡2卡3| 国产黄色在线免费观看| 日本黄段视频| 欧美一级片观看| 经典三级一区二区三区视频| 国模龙园园私拍337p| 99久久999久久久综合精品涩 | 偷自在线| 欧美aaaav免费大片| 黑人黄色大片| 激情五月视频| 男女视频在线观看免费| 在线免费看黄| 性欧美xx| 男女交性视频免费播放视频| 日韩电影毛片| 狠狠去| 五月天婷婷免费观看视频在线| 成年人啪啪网站| 在线天堂bt种子资源| 精品国产免费人成高清| 久久国产乱子伦精品免费一| 国产在线h| 日本特黄a级高清免费大片18| 国产视频每日更新| 日本xxxxbbbb| 一区二区三区免费| 亚洲人成网站色7777| 欧美二区三区| 在线免费影视| 操片| 一级视频片| 久久婷婷综合五月一区二区| 天天视频免费入口| 69日本xxxxxxxxx29| 四虎永久影院永久影库| 狠狠色噜噜狠狠色综合久| 99热99操99射| 亚洲成年人网| 国产在线精彩视频二区| 日本人69xxxxx|