HarmonyOS 分散アプリケーション農業温室データ監視の解釈

HarmonyOS 分散アプリケーション農業温室データ監視の解釈

[[440298]]

詳細については、以下をご覧ください。

51CTOとHuaweiが共同で構築したHongmengテクノロジーコミュニティ

https://harmonyos..co

導入

分散データ サービス (DDS) は、アプリケーションに異なるデバイス間でデータベース データを分散する機能を提供します。分散データ インターフェイスを呼び出すことにより、アプリケーションはデータを分散データベースに保存します。分散データ サービスは、アカウント、アプリケーション、データベースの 3 つを組み合わせることで、異なるアプリケーションに属するデータを分離し、異なるアプリケーション間のデータが分散データ サービスを通じて相互にアクセスできないようにします。分散データ サービスは、信頼できる認証済みデバイス間のアプリケーション データの同期をサポートし、複数の端末デバイスで最終的に一貫したデータ アクセス エクスペリエンスをユーザーに提供します。

機能紹介

HarmonyOS をベースとしたこの分散データ サービス機能は、一方では、農業用温室内の温度、湿度、二酸化炭素濃度などのデータの収集をシミュレートし、収集したデータを携帯電話に表示します。一方、携帯電話のデータは他のデバイス(スマートスクリーン、時計、PADなど)に移行でき、一部のデータの分析と表示を行うことができます。

前提:

異なるデバイス間で分散データ サービスの同期機能を実現するには、同じ Huawei アカウントでログインし、同じアプリケーション パッケージ名を使用し、同じネットワーク上で作業する必要があります。両方のデバイスで同時に Bluetooth をオンにすることもできます。

開発ガイド

1. config.jsonに権限を追加する

// 能力と同じディレクトリレベルに追加

  1. 「必要な権限」 : [
  2. {
  3. 「名前」 : 「ohos.permission.DISTRIBUTED_DATASYNC」  
  4. }
  5. ]

2. MainAbilityに権限を追加する

  1. @オーバーライド
  2. パブリックvoid onStart(インテント インテント) {
  3. super.onStart(インテント);
  4. super.setMainRoute(MainAbilitySlice.class.getName());
  5. // Abilityを実装するコードは、マルチデバイス共同アクセス権限を使用する必要があることを明示的に宣言します
  6. requestPermissionsFromUser(新しい文字列[]{
  7. "ohos.permission.DISTRIBUTED_DATASYNC" }, 0);
  8.  
  9. }

3. 構成に従って分散データベース管理クラスインスタンスKvManagerを構築し、分散データベースオブジェクトSingleKvStoreを作成します。

//データベースを初期化する

  1. // 初期パラメータコンテキスト: Context context = getApplicationContext(); storeId は、"testApp" のように自分で定義できる、文字列型の分散データベース ID です。
  2. 公共 静的SingleKvStore initOrGetDB(コンテキストコンテキスト、文字列ストアID) {
  3. KvManagerConfig kvManagerConfig = 新しい KvManagerConfig(コンテキスト);
  4. kvManager = KvManagerFactory.getInstance().createKvManager(kvManagerConfig);
  5. オプション options = new Options();
  6. オプション.setCreateIfMissing( true )
  7. .setEncrypt( false )
  8. .setKvStoreType(KvStoreType.SINGLE_VERSION) //データベース タイプ: 単一バージョンの分散データベース
  9. .setAutoSync( true ); //自動同期はtrue 、手動同期はfalse  
  10. singleKvStore = kvManager.getKvStore(オプション, ストアID);
  11. singleKvStoreを返します
  12. }

4. 単一バージョンの分散データベースにデータを書き込む

  1. //キーと値の形式で分散データベースに保存します
  2. 試す {
  3. // 収集したデータをキー値形式で分散データベースに保存します
  4. DataModle dataModle=new DataModle();
  5. データモジュール.setTemp( temp );
  6. データモデルを設定します。
  7. データモデルをco2に設定します。
  8. 文字列 jsonString= ZSONObject.toZSONString(dataModle);
  9. 単一のKvStore.putString( "データ" 、jsonString);
  10. } キャッチ (KvStoreException e) {
  11. LogUtils.debug(TAG、 「DataServiceAbility::updateData()」 +e.getMessage());
  12. }

5. 分散データの変更をサブスクライブします。クライアントはデータの変更を監視するためにKvStoreObserverインターフェースを実装する必要がある

  1. //サブスクリプションタイプ SubscribeType.SUBSCRIBE_TYPE_ALL は、ローカルデバイスや他の周辺機器と同期できることを意味します
  2. 内部KvStoreObserver = 新しい内部KvStoreObserver();
  3. 単一の KvStore.subscribe(SubscribeType.SUBSCRIBE_TYPE_ALL、内部 KvStoreObserver);
  4. } キャッチ (KvStoreException e) {
  5. e.printStackTrace();
  6. }
  7.  
  8. パブリッククラスInnerKvStoreObserverはKvStoreObserverを実装します{
  9.  
  10. @オーバーライド
  11. パブリックvoid onChange(ChangeNotification changeNotification) {
  12. // ページ上のデータを更新します。落とし穴もあります。 onChange メソッドは実際には子スレッドで実行されます。
  13. メインアビリティスライス.taskDispatcher.asyncDispatch(() -> {
  14. //ここでページUIコンポーネントの表示更新を実行します
  15. UIData をフラッシュします。
  16. });
  17. }
  18. }

6. 分散データベースデータを取得する

  1. // 分散データのデータを照会します。 get(String key ) または getEntries(String key ) メソッドを通じてデータを取得できます
  2. リスト<Entry> エントリ = singleKvStore.getEntries( "data" );
  3. エントリサイズ() > 0の場合{
  4. ZSONObject zsonObject = ZSONObject.stringToZSON(entries.get(0).getValue().getString());
  5. ダブル  temp = zsonObject.getDouble( "temp" );
  6. ダブルhumi = zsonObject.getDouble( "humi" );
  7. ダブルco2 = zsonObject.getDouble( "co2" );
  8. 文字列 strTemp = String.format( "%.1f" , temp );
  9. 文字列 strHumi = String.format( "%.1f" , humi);
  10. 文字列 strCO2 = String.format( "%.1f" , co2);
  11. tvTemp.setText(strTemp+ "℃" );
  12. tvHumi.setText(strHumi+ "%RH" );
  13. tvCo2.setText(strCO2+ "ppm" );
  14. }

7. 購読解除。通常はページが破棄されたときに呼び出されます。つまり、onStop() で呼び出されます。

  1. シングルKvStore != null の場合{
  2. 単一のKvStore。unSubscribe(内部KvStoreObserver);
  3. }

8. データを他のデバイスと同期します。接続されているデバイスのリストを取得し、同期方法を選択してデータを同期します

  1. リスト<DeviceInfo> onlineDevices = DeviceManager
  2. .getDeviceList(デバイス情報.FLAG_GET_ONLINE_DEVICE);
  3. リスト<String> deviceIdList = 新しいArrayList<>();
  4. (デバイス情報デバイス情報:デバイス情報リスト) {
  5. デバイスIDリストに追加します(デバイス情報を取得します)。
  6. }
  7. //指定されたデバイスに移行し、デバイスIDリストを渡します
  8. 単一のKvStore.sync(デバイスIDリスト、SyncMode.PUSH_ONLY);

このプロジェクトでは、バックグラウンド サービスでスケジュールされたタスクを使用して、農業温室データの収集をシミュレートし、データを分散データベースにリアルタイムで保存し、メイン インターフェイスでデータの変更を監視して、データをリアルタイムで更新します。移行するデバイスを選択すると、対応するデバイスにデータを移行できます。


モバイルアプリを開いたときのインターフェース


TVアプリケーションを開いたときのインターフェース


右上隅の移行ボタンをクリックし、デバイスの移行(P40-0036)を選択します。



移行後、左側のデバイスのデータと右側のデバイスのデータが同期されます。

ソースコードを添付

携帯

1. 電話機能スライス

  1. パブリッククラス PhoneAbilitySlice は AbilitySlice を拡張します {
  2. プライベート SingleKvStore シングルKvストア;
  3. プライベート InnerKvStoreObserver innerKvStoreObserver;
  4. プライベートインテント serviceIntent;
  5. プライベートテキストtvTemp;
  6. プライベートテキストtvHumi;
  7. プライベートテキストtvCo2;
  8. プライベートDeviceData chooseDevice;
  9. プライベート DevicesProvider devicesProvider;
  10. プライベート CommonDialog commonDialog;
  11. プライベート文字列 TAG = "MainAbilitySlice" ;
  12. プライベートList<String>deviceIdList;
  13. @オーバーライド
  14. パブリックvoid onStart(インテント インテント) {
  15. super.onStart(インテント);
  16. UIContent をスーパーに設定します。
  17. // 没入型ステータスバーを設定します getWindow().addFlags(WindowManager.LayoutConfig.MARK_TRANSLUCENT_STATUS);
  18. ビューを初期化します。
  19. サービスの初期化();
  20. 試す {
  21. //データベースを取得する
  22. 単一の KvStore = DBUtils.initOrGetDB(これ、DBUtils.KV_STORE_NAME);
  23. 内部KvStoreObserver = 新しい内部KvStoreObserver();
  24. //分散データベースをサブスクライブする
  25. 単一の KvStore.subscribe(SubscribeType.SUBSCRIBE_TYPE_ALL、内部 KvStoreObserver);
  26. } キャッチ (KvStoreException e) {
  27. LogUtils.debug(TAG、 "MainAbilitySlice::onStart/" +e.getMessage());
  28. }
  29. }
  30. プライベートvoid initService() {
  31. //ServiceAbilityを開始する
  32. サービスインテント = 新しいインテント();
  33. 操作 operation = new Intent.OperationBuilder()
  34. .withDeviceId( "" )
  35. .withBundleName( "com.isoftstone.distributeddata" )
  36. .withAbilityName( "com.isoftstone.distributeddata.DataServiceAbility" )
  37. 。建てる();
  38. serviceIntent.setOperation(操作);
  39. サービスインテントを開始します。
  40. }
  41. プライベートvoid initView() {
  42. tvTemp = (テキスト) findComponentById(ResourceTable.Id_text_temp);
  43. tvHumi = (テキスト) findComponentById(ResourceTable.Id_text_humi);
  44. tvCo2 = (テキスト) findComponentById(ResourceTable.Id_text_co2);
  45. ボタン bt = (ボタン) findComponentById(ResourceTable.Id_bt_continue);
  46. bt.setClickedListener(コンポーネント -> {
  47. (component.getId() == ResourceTable.Id_bt_continue) の場合 {
  48. //オンラインデバイスを表示
  49. List<DeviceInfo> onlineDevices = DeviceManager
  50. .getDeviceList(デバイス情報.FLAG_GET_ONLINE_DEVICE);
  51. リスト<DeviceData> deviceDatas = 新しいArrayList<>();
  52. onlineDevices == null || onlineDevices.size () < 1場合{
  53. CustomerDialog.showToastDialog(getAbility(), "オンラインデバイスがありません" );
  54. }それ以外{
  55. (デバイス情報デバイス情報:オンラインデバイス) {
  56. deviceDatas.add (新しい DeviceData( false 、 deviceInfo));
  57. }
  58. デバイスデータを表示します。
  59. }
  60. }
  61. });
  62. }
  63. プライベート void showDevices(List<DeviceData> deviceDatas) {
  64. デバイスを選択 = null ;
  65. commonDialog = 新しい CommonDialog(this);
  66. コンポーネント コンポーネント = LayoutScatter.getInstance(this)
  67. .parse(ResourceTable.Layout_dialog_layout_device, null true );
  68. リストコンテナー listContainer = (リストコンテナー) component.findComponentById(ResourceTable.Id_list_container_device);
  69. devicesProvider = 新しい DevicesProvider(this、deviceDatas);
  70. listContainer.setItemProvider(devicesProvider);
  71. listContainer.setItemClickedListener((listContainer1,component1,position,l) -> {
  72. デバイスを選択します = deviceDatas.get(位置);
  73. ( int i = 0 ; i < deviceDatas.size ( ); i++) {
  74. if (i == 位置) {
  75. deviceDatas.set (i、新しい DeviceData( true 、 deviceDatas.get(i).getDeviceInfo()));
  76. }それ以外{
  77. deviceDatas.set (i、新しい DeviceData( false 、 deviceDatas.get(i).getDeviceInfo()));
  78. }
  79. }
  80. devicesProvider = 新しい DevicesProvider(this、deviceDatas);
  81. listContainer1.setItemProvider(devicesProvider);
  82. });
  83. テキスト tvCancle = (テキスト) component.findComponentById(ResourceTable.Id_operate_no);
  84. テキスト tvSure = (テキスト) component.findComponentById(ResourceTable.Id_operate_yes);
  85.  
  86. tvCancle.setClickedListener(component12 -> commonDialog.destroy());
  87.  
  88. tvSure.setClickedListener(component13 -> {
  89. (chooseDevice == null )の場合{
  90. CustomerDialog.showToastDialog(this, "デバイスを選択してください" );
  91. }それ以外{
  92. 試す {
  93. デバイスIDリスト = 新しいArrayList<>();
  94. デバイスIDリスト。 (chooseDevice.getDeviceInfo().getDeviceId())を追加します
  95. //手動で同期されたデバイスリスト
  96. 単一のKvStore.sync(デバイスIDリスト、SyncMode.PUSH_ONLY);
  97. 共通ダイアログを破棄します。
  98. } キャッチ (IllegalStateException e) {
  99. //フロー例外をキャプチャして、プロセスがフローを再度開始するのを防ぎます
  100. LogUtils.debug(TAG、 "MainAbilitySlice::singleKvStore.sync()/" +e.getMessage());
  101. }
  102. }
  103. });
  104. commonDialog.setSize(MATCH_PARENT, MATCH_CONTENT);
  105. commonDialog.setAlignment(LayoutAlignment.BOTTOM);
  106. commonDialog.setCornerRadius(10);
  107. commonDialog.setAutoClosable( true );
  108. commonDialog.setContentCustomComponent(コンポーネント);
  109. commonDialog.setTransparent( true );
  110. 共通ダイアログを表示します。
  111. }
  112. パブリッククラスInnerKvStoreObserverはKvStoreObserverを実装します{
  113.  
  114. @オーバーライド
  115. パブリックvoid onChange(ChangeNotification changeNotification) {
  116. //onChangeメソッドは実際には子スレッドで実行されます
  117. getUITaskDispatcher().asyncDispatch(() -> {
  118. //ここでページUIコンポーネントの表示更新を実行します
  119. 非同期更新データ();
  120. });
  121. }
  122. }
  123. パブリックvoid asyncUpdateData(){
  124. //分散データのデータを照会する
  125. リスト<Entry> エントリ = singleKvStore.getEntries( "data" );
  126. エントリサイズ() > 0の場合{
  127. ZSONObject zsonObject = ZSONObject.stringToZSON(entries.get(0).getValue().getString());
  128. ダブル  temp = zsonObject.getDouble( "temp" );
  129. ダブルhumi = zsonObject.getDouble( "humi" );
  130. ダブルco2 = zsonObject.getDouble( "co2" );
  131. 文字列 strTemp = String.format( "%.1f" , temp );
  132. 文字列 strHumi = String.format( "%.1f" , humi);
  133. 文字列 strCO2 = String.format( "%.1f" , co2);
  134. tvTemp.setText(strTemp+ "℃" );
  135. tvHumi.setText(strHumi+ "%RH" );
  136. tvCo2.setText(strCO2+ "ppm" );
  137. //手動で同期されたデバイスリスト
  138. シングルKvStoreの場合! = null ) {
  139. if(deviceIdList!= null &&deviceIdList.size ()>0) {
  140. 単一のKvStore.sync(デバイスIDリスト、SyncMode.PUSH_ONLY);
  141. }
  142. }
  143. }
  144. }
  145.  
  146. @オーバーライド
  147. パブリックvoid onActive() {
  148. スーパーのonActive();
  149. }
  150. @オーバーライド
  151. パブリックvoid onForeground(インテント インテント) {
  152. super.onForeground(インテント);
  153. }
  154. @オーバーライド
  155. 保護されたvoid onStop() {
  156. スーパーのonStop();
  157. //サービスを破棄する
  158. サービスインテントを停止します。
  159. //データベースを削除する
  160. DBUtils.clearDB();
  161. // 登録解除
  162. シングルKvStore != null の場合{
  163. if(innerKvStoreObserver!= null ){
  164. 単一のKvStore。unSubscribe(内部KvStoreObserver);
  165. }
  166. }
  167. }
  168. }

2. データサービス能力

  1. パブリッククラスDataServiceAbilityはAbilityを拡張します{
  2. プライベート静的最終 HiLogLabel LABEL_LOG = new HiLogLabel(3, 0xD001100, "デモ" );
  3. プライベート SingleKvStore シングルKvストア;
  4. プライベート NotificationRequest リクエスト。
  5. プライベートタイマー mTimer;
  6. プライベート TimerTask mTimerTask;
  7. プライベート文字列 TAG = "DataServiceAbility" ;
  8. @オーバーライド
  9. パブリックvoid onStart(インテント インテント) {
  10. LogUtils.debug(TAG, "DataServiceAbility::onStart" );
  11. super.onStart(インテント);
  12. //フロントデスクサービスを作成する
  13. ForeService を作成します。
  14. 試す {
  15. 単一の KvStore = DBUtils.initOrGetDB(これ、DBUtils.KV_STORE_NAME);
  16. } キャッチ (例外 e) {
  17. LogUtils.debug(TAG、 「DataServiceAbility::onStart()」 +e.getMessage());
  18. }
  19. // アナログ センサーは 10 秒ごとに温室データを収集します。
  20. if(mTimer == null ){
  21. mTimer = 新しいタイマー();
  22. }
  23. if(mTimerTask== null ){
  24. mTimerTask = 新しいTimerTask() {
  25. @オーバーライド
  26. パブリックボイド実行(){
  27. データを更新します。
  28. }
  29. };
  30. }
  31. mTimer.schedule(mTimerTask,0,1000*10);
  32. }
  33. プライベートvoid updateData() {
  34. // 0~100 のランダムな温度を取得します。
  35. ダブル  temp = 新しい Random().nextDouble()*100;
  36. // 0~100 のランダムな湿度を取得します。
  37. ダブルhumi = 新しい Random().nextDouble()*100;
  38. //ランダムなCO2濃度0~1000を取得
  39. ダブルco2 = 新しいRandom().nextDouble()*1000;
  40. 試す {
  41. // 収集したデータをキー値形式で分散データベースに保存します
  42. DataModle dataModle=new DataModle();
  43. データモジュール.setTemp( temp );
  44. データモデルを設定します。
  45. データモデルをco2に設定します。
  46. 文字列 jsonString= ZSONObject.toZSONString(dataModle);
  47. 単一のKvStore.putString( "データ" 、jsonString);
  48. } キャッチ (KvStoreException e) {
  49. LogUtils.debug(TAG、 「DataServiceAbility::updateData()」 +e.getMessage());
  50. }
  51. }
  52. プライベートvoid createForeService() {
  53. // 通知を作成します。1005 は notificationId です
  54. リクエスト = 新しい NotificationRequest(1005);
  55. NotificationRequest.NotificationNormalContent コンテンツ = 新しい NotificationRequest.NotificationNormalContent();
  56. content.setTitle( "農業用温室" ).setText( "データ収集サービスが有効になっています" );
  57. NotificationRequest.NotificationContent notificationContent = 新しい NotificationRequest.NotificationContent(content);
  58. リクエスト.setContent(通知コンテンツ);
  59. //通知をバインドします。1005 は通知を作成するときに渡される notificationId です。
  60. バックグラウンド実行を維持(1005、リクエスト);
  61. }
  62. @オーバーライド
  63. パブリックvoid onBackground() {
  64. スーパーのonBackground();
  65. LogUtils.debug(TAG, "DataServiceAbility::onBackground()" );
  66. }
  67.  
  68. @オーバーライド
  69. パブリックボイドonStop() {
  70. スーパーのonStop();
  71. mTimerTask != null の場合{
  72. タイマータスクをキャンセルします。
  73. mTimerTask = null ;
  74. } の場合 (mTimer != null ) {
  75. タイマーをキャンセルします。
  76. mTimer = null ;
  77. }
  78. //フォアグラウンド サービスを停止します。
  79. バックグラウンド実行をキャンセルします。
  80. LogUtils.debug(TAG, "DataServiceAbility::onStop()" );
  81. }
  82.  
  83. @オーバーライド
  84. パブリックvoid onCommand(インテント インテント、ブール値 再起動、 int開始 ID) {
  85. }
  86. @オーバーライド
  87. パブリックIRemoteObject onConnect(インテントインテント) {
  88. 戻る ヌル;
  89. }
  90. @オーバーライド
  91. パブリックvoid onDisconnect(インテント インテント) {
  92. }
  93. }

3.DBユーティリティ

  1. パブリッククラスDBUtils {
  2. プライベート静的KvManager kvManager;
  3. プライベート静的SingleKvStore singleKvStore;
  4. 公共 静的文字列 KV_STORE_NAME = "farm_data" ;
  5. //データベース初期化の具体的な実装
  6. 公共 静的SingleKvStore initOrGetDB(コンテキストコンテキスト、文字列ストアID) {
  7. KvManagerConfig kvManagerConfig = 新しい KvManagerConfig(コンテキスト);
  8. kvManager = KvManagerFactory.getInstance().createKvManager(kvManagerConfig);
  9. オプション options = new Options();
  10. オプション.setCreateIfMissing( true )
  11. .setEncrypt( false )
  12. .setKvStoreType(KvStoreType.SINGLE_VERSION)
  13. .setAutoSync( false ); //自動同期はtrue 、手動同期はfalse  
  14. singleKvStore = kvManager.getKvStore(オプション, ストアID);
  15. singleKvStoreを返します
  16. }
  17. // データベース内のフィールドが変更された場合、変更を有効にするには閉じて削除し、再作成する必要があります。
  18. 公共 静的void clearDB() {
  19. kvManager.closeKvStore(単一のKvStore);
  20. kvManager.deleteKvStore(KV_STORE_NAME);
  21. }
  22. }

4. メインアビリティ

  1. @オーバーライド
  2. パブリックvoid onStart(インテント インテント) {
  3. super.onStart(インテント);
  4. super.setMainRoute(PhoneAbilitySlice.class.getName());
  5. // Abilityを実装するコードは、マルチデバイス共同アクセス権限を使用する必要があることを明示的に宣言します
  6. requestPermissionsFromUser(新しい文字列[]{ "ohos.permission.DISTRIBUTED_DATASYNC" ,}, 0);
  7. }

5. データモデル

  1. パブリッククラスDataModel {
  2. プライベートダブル 温度;
  3. プライベートダブルヒュミ;
  4. プライベートダブルCO2;
  5. 公共 ダブルgetTemp() {
  6. 戻る 温度;
  7. }
  8. パブリックボイドsetTemp( double  温度){
  9. this.temp = temp ;
  10. }
  11.  
  12. 公共 ダブルgetHumi() {
  13. ヒュミを返す;
  14. }
  15. パブリックvoid setHumi( double humi) {
  16. humi は humi と等価です。
  17. }
  18. 公共 ダブルgetCo2() {
  19. CO2を返す
  20. }
  21. パブリックボイドsetCo2(ダブルco2){
  22. .co2 = co2; となります。
  23. }
  24. }

6. デバイスデータ

  1. パブリッククラスDeviceData {
  2. プライベートブール値 isChecked;
  3. プライベートデバイス情報デバイス情報;
  4. /**
  5. * デバイスデータ
  6. *
  7. * @param isChecked isChecked
  8. * @param デバイス情報 デバイス情報
  9. */
  10. パブリックデバイスデータ(ブール値isChecked、デバイス情報デバイス情報) {
  11. this.isChecked = isChecked;
  12. this.deviceInfo = デバイス情報;
  13. }
  14. パブリックデバイス情報 getDeviceInfo() {
  15. デバイス情報を返します
  16. }
  17. パブリックvoid setDeviceInfo(デバイス情報デバイス情報) {
  18. this.deviceInfo = デバイス情報;
  19. }
  20. パブリックブール値isChecked() {
  21. isChecked を返します
  22. }
  23. パブリックvoid setChecked(boolean チェック済み) {
  24. isChecked = チェック済み;
  25. }
  26. }

7. デバイスプロバイダー

  1. パブリッククラスDevicesProviderはBaseItemProviderを拡張します{
  2.  
  3. プライベートList<DeviceData>データ;
  4. プライベート LayoutScatter layoutScatter;
  5.  
  6. パブリックDevicesProvider(コンテキスト コンテキスト、List<DeviceData> データ) {
  7. this.data = データ;
  8. コンテキストに応じて、レイアウト オブジェクトのインスタンスを作成します。
  9. }
  10.  
  11. @オーバーライド
  12. 公共 整数getCount() {
  13. data.size ()を返します
  14. }
  15.  
  16. @オーバーライド
  17. パブリックオブジェクトgetItem( int i) {
  18. data.get(i)を返します
  19. }
  20.  
  21. @オーバーライド
  22. パブリックlong getItemId( int i) {
  23. iを返します
  24. }
  25.  
  26. @オーバーライド
  27. public Component getComponent( int位置、 Component コンポーネント、
  28. コンポーネントコンテナコンポーネントコンテナ) {
  29. ビューホルダー ビューホルダー;
  30. // コンポーネントは Android のビューに相当し、残りは Android の ListView のアダプターに似ています。
  31. // 名前はあまり変わりませんが、Android では ListView は基本的に廃止されています。
  32. コンポーネントがnull場合
  33. コンポーネント = layoutScatter.parse(ResourceTable.Layout_dialog_device_item, null false );
  34. ビューホルダー = 新しいビューホルダー();
  35. viewHolder.imgType = (イメージ) component.findComponentById(ResourceTable.Id_item_type);
  36. viewHolder.tvName = (テキスト) component.findComponentById(ResourceTable.Id_item_name);
  37. viewHolder.imgCheck = (イメージ) component.findComponentById(ResourceTable.Id_item_check);
  38. コンポーネントのタグを設定します(viewHolder);
  39. }それ以外{
  40. viewHolder = (ViewHolder) コンポーネント.getTag();
  41. }
  42. デバイスデータ デバイスデータ = data.get(位置);
  43. デバイスタイプ deviceType=deviceData.getDeviceInfo().getDeviceType();
  44. スイッチ (デバイスタイプ) {
  45. SMART_WATCHの場合:
  46. viewHolder.imgType.setPixelMap(ResourceTable.Media_dv_watch);
  47. 壊す;
  48. SMART_PADの場合:
  49. viewHolder.imgType.setPixelMap(ResourceTable.Media_dv_pad);
  50. 壊す;
  51. ケースSMART_PHONE:
  52. viewHolder.imgType.setPixelMap(ResourceTable.Media_dv_phone);
  53. 壊す;
  54. }
  55. viewHolder.tvName.setText(デバイスデータ.getDeviceInfo().getDeviceName());
  56. デバイスデータをチェックしている場合
  57. viewHolder.imgCheck.setImageAndDecodeBounds(ResourceTable.Media_check2); }そうでない場合は、viewHolder.imgCheck.setImageAndDecodeBounds(ResourceTable.Media_uncheck2);
  58. }
  59. コンポーネントを返します
  60. }
  61.  
  62. /**
  63. * Android の listView キャッシュに似ています。画面に表示されたアイテムをViewHolderにキャッシュし、次回表示されたときにキャッシュから直接読み取る
  64. */
  65. プライベート静的クラス ViewHolder {
  66. プライベートイメージimgType;
  67. プライベートテキストtvName;
  68. プライベートイメージimgCheck;
  69. }
  70. }

8. 顧客ダイアログ

  1. パブリッククラスCustomerDialog{
  2. 公共 静的void showToastDialog(コンテキスト context, 文字列 str) {
  3. DirectionalLayout toastLayout = (DirectionalLayout) LayoutScatter.getInstance(コンテキスト)
  4. .parse(ResourceTable.Layout_toast_dialog, null false );
  5. テキスト text = (テキスト) toastLayout.findComponentById(ResourceTable.Id_toast);
  6. テキストをセットします。
  7. 新しい ToastDialog(コンテキスト)
  8. .setContentCustomComponent(トーストレイアウト)
  9. .setSize(DirectionalLayout.LayoutConfig.MATCH_CONTENT,
  10. DirectionalLayout.LayoutConfig.MATCH_CONTENT)
  11. .setAlignment(レイアウト配置.CENTER)
  12. 。見せる();
  13. }
  14. }

9. マイアプリケーション

  1. @オーバーライド
  2. パブリックvoid onInitialize() {
  3. スーパーのonInitialize();
  4. }
  5. }

10. config.json ファイル

  1. "アプリ" : {
  2. "バンドル名" : " com.isoftstone.distributeddata " ,
  3. 「ベンダー」 : 「isoftstone」
  4. 「バージョン」 : {
  5. 「コード」 : 1000000,
  6. "名前" : "1.0.0"  
  7. }
  8. },
  9. "デバイス構成" : {},
  10. 「モジュール」 : {
  11. 「パッケージ」 : 「com.isoftstone.distributeddata」
  12. 「名前」 : 「.MyApplication」
  13. 「メインアビリティ」 : 「com.isoftstone.distributeddata.メインアビリティ」
  14. "デバイスタイプ" : [
  15. "電話"  
  16. ]、
  17. 「ディストリビューション」 : {
  18. "インストール時に配信" : true
  19. "モジュール名" : "エントリ" ,
  20. "モジュールタイプ" : "エントリ" ,
  21. "インストール無料" : false  
  22. },
  23. 「必要な権限」 : [
  24. {
  25. 「名前」 : 「ohos.permission.DISTRIBUTED_DATASYNC」  
  26. },
  27. {
  28. 分散オンラインデバイスを見つけるには、この権限を追加します
  29. 「名前」 : 「ohos.permission.GET_DISTRIBUTED_DEVICE_INFO」  
  30. },
  31. {
  32. サービスをフォアグラウンドサービスとして設定するには、権限を追加する必要があります
  33. "名前" : "ohos.permission.KEEP_BACKGROUND_RUNNING"   
  34. }
  35. ]、
  36. 「能力」 : [
  37. {
  38. 「スキル」 : [
  39. {
  40. 「エンティティ」 : [
  41. 「エンティティ.システム.ホーム」  
  42. ]、
  43. 「アクション」 : [
  44. 「アクション.システム.ホーム」  
  45. ]
  46. }
  47. ]、
  48. 「方向」 「未指定」
  49. 「名前」 : 「com.isoftstone.distributeddata.MainAbility」
  50. "アイコン" : "$media:icon" ,
  51. "説明" : "$string:mainability_description" ,
  52. "ラベル" : "$string:entry_MainAbility" ,
  53. 「タイプ」 : 「ページ」
  54. 「起動タイプ」 : 「標準」  
  55. },
  56. {
  57. 「名前」 : 「com.isoftstone.distributeddata.DataServiceAbility」
  58. "アイコン" : "$media:icon" ,
  59. 「説明」 : 「$string:dataserviceability_description」
  60. 「タイプ」 : 「サービス」
  61. 「表示」 : true
  62. 「背景モード」 : [
  63. 「データ転送」
  64. "位置"  
  65. ]
  66. }
  67.  
  68. ]、
  69. 「メタデータ」 : {
  70. 「カスタマイズデータ」 : [
  71. {
  72. 「名前」 : 「hwc-テーマ」
  73. 「値」 : 「androidhwext:style/Theme.Emui.NoTitleBar」
  74. "余分な" ""  
  75. }
  76. ]
  77. }
  78. }

11.ability_main.xmlレイアウトファイル

  1. <?xml バージョン = "1.0"エンコーディング = "utf-8" ?>
  2. <方向レイアウト
  3. xmlns:ohos= "http://schemas.huawei.com/res/ohos"  
  4. ohos:height= "match_parent"  
  5. ohos:width= "match_parent"  
  6. ohos:orientation= "垂直" >
  7.  
  8. <依存レイアウト
  9. ohos:width= "match_parent"  
  10. ohos:height= "match_content"  
  11. ohos:orientation= "水平"  
  12. ohos:top_padding= "50vp"  
  13. ohos:bottom_padding= "20vp"  
  14. ohos:left_padding= "20vp"  
  15. ohos:right_padding= "20vp"  
  16. ohos:background_element= "$graphic:background_ability_main" >
  17. <テキスト
  18. ohos:width= "match_content"  
  19. ohos:height= "match_content"  
  20. ohos:text= "農業温室データ監視"  
  21. ohos:text_size= "26vp"  
  22. ohos:text_color= "#ffffff"  
  23. ohos:center_in_parent= "true" />
  24. <ボタン
  25. ohos:id= "$+id:bt_continue"  
  26. ohos:width= "25vp"  
  27. ohos:height= "25vp"  
  28. ohos:background_element= "$media:conti"  
  29. ohos:align_parent_right= "true"  
  30. ohos:vertical_center= "true" />
  31. </依存レイアウト>
  32. <依存レイアウト
  33. ohos:height= "match_content"  
  34. ohos:width= "match_parent"  
  35. ohos:background_element= "#f4f5f7"  
  36. ohos:left_padding= "15vp"  
  37. ohos:right_padding= "15vp"  
  38. ohos:top_padding= "10vp"  
  39. ohos:bottom_padding= "10vp" >
  40.  
  41. <テキスト
  42. ohos:height= "match_content"  
  43. ohos:width= "match_content"  
  44. ohos:text= "温度:"  
  45. ohos:text_color= "#000000"  
  46. ohos:text_size= "18fp"  
  47. ohos:vertical_center= "true" />
  48.  
  49. <テキスト
  50. ohos:id= "$+id:text_temp"  
  51. ohos:height= "match_content"  
  52. ohos:width= "match_content"  
  53. ohos:text= "データを収集中です"  
  54. ohos:text_color= "#00ff00"  
  55. ohos:text_size= "18fp"  
  56. ohos:left_margin= "50vp"  
  57. ohos:vertical_center = "true" />
  58. </依存レイアウト>
  59.  
  60. <コンポーネント
  61. ohos:height= "2vp"  
  62. ohos:width= "match_content"  
  63. ohos:background_element= "#FFFFFF" />
  64.  
  65. <依存レイアウト
  66. ohos:height= "match_content"  
  67. ohos:width= "match_parent"  
  68. ohos:background_element= "#f4f5f7"  
  69. ohos:left_padding= "15vp"  
  70. ohos:right_padding= "15vp"  
  71. ohos:top_padding= "10vp"  
  72. ohos:bottom_padding= "10vp" >
  73.  
  74. <テキスト
  75. ohos:height= "match_content"  
  76. ohos:width= "match_content"  
  77. ohos:text= "湿度:"  
  78. ohos:text_color= "#000000"  
  79. ohos:text_size= "18fp"  
  80. ohos:vertical_center= "true" />
  81.  
  82. <テキスト
  83. ohos:id= "$+id:text_humi"  
  84. ohos:height= "match_content"  
  85. ohos:width= "match_content"  
  86. ohos:text= "データを収集中です"  
  87. ohos:text_color= "#00ff00"  
  88. ohos:text_size= "18fp"  
  89. ohos:left_margin= "50vp"  
  90. ohos:vertical_center = "true" />
  91. </依存レイアウト>
  92.  
  93. <コンポーネント
  94. ohos:height= "2vp"  
  95. ohos:width= "match_content"  
  96. ohos:background_element= "#FFFFFF" />
  97.  
  98. <依存レイアウト
  99. ohos:height= "match_content"  
  100. ohos:width= "match_parent"  
  101. ohos:background_element= "#f4f5f7"  
  102. ohos:left_padding= "15vp"  
  103. ohos:right_padding= "15vp"  
  104. ohos:top_padding= "10vp"  
  105. ohos:bottom_padding= "10vp" >
  106.  
  107. <テキスト
  108. ohos:height= "match_content"  
  109. ohos:width= "match_content"  
  110. ohos:text= "CO2:"  
  111. ohos:text_color= "#000000"  
  112. ohos:text_size= "18fp"  
  113. ohos:vertical_center= "true" />
  114.  
  115. <テキスト
  116. ohos:id= "$+id:text_co2"  
  117. ohos:height= "match_content"  
  118. ohos:width= "match_content"  
  119. ohos:text= "データを収集中です"  
  120. ohos:text_color= "#00ff00"  
  121. ohos:text_size= "18fp"  
  122. ohos:left_margin= "50vp"  
  123. ohos:vertical_center= "true" />
  124. </依存レイアウト>
  125.  
  126.  
  127. </方向レイアウト>

12. ダイアログデバイスアイテム.xml

  1. <?xml バージョン = "1.0"エンコーディング = "utf-8" ?>
  2. <方向レイアウト
  3. xmlns:ohos= "http://schemas.huawei.com/res/ohos"  
  4. ohos:height= "70vp"  
  5. ohos:width= "match_parent"  
  6. ohos:orientation= "水平" >
  7.  
  8. <画像
  9. ohos:id= "$+id:item_type"  
  10. ohos:height= "45vp"  
  11. ohos:width= "50vp"  
  12. ohos:image_src= "$media:dv_phone"  
  13. ohos:layout_alignment= "垂直中央"  
  14. ohos:left_margin= "10vp"  
  15. ohos:scale_mode= "内側" />
  16.  
  17. <テキスト
  18. ohos:id= "$+id:item_name"  
  19. ohos:height= "match_parent"  
  20. ohos:width= "0vp"  
  21. ohos:最大テキスト行数= "1"  
  22. ohos:text= "Huawei P40"  
  23. ohos:text_alignment= "垂直中央"  
  24. ohos:text_size= "15fp"  
  25. ohos:weight= "1" />
  26.  
  27. <画像
  28. ohos:id= "$+id:item_check"  
  29. ohos:height= "30vp"  
  30. ohos:width= "30vp"  
  31. ohos:image_src= "$media:uncheck2"  
  1. <方向レイアウト
  2. xmlns:ohos= "http://schemas.huawei.com/res/ohos"  
  3. ohos:height= "340vp"  
  4. ohos:width= "match_parent"  
  5. ohos:orientation= "垂直" >
  6.  
  7. <方向レイアウト
  8. ohos:height= "match_parent"  
  9. ohos:width= "match_parent"  
  10. ohos:background_element= "$graphic:background_white_radius_10"  
  11. ohos:bottom_margin= "50vp"  
  12. ohos:left_margin= "20vp"  
  13. ohos:orientation= "垂直"  
  14. ohos:right_margin= "20vp" >
  15.  
  16. <テキスト
  17. ohos:height= "50vp"  
  18. ohos:width= "match_parent"  
  19. ohos:left_padding= "20vp"  
  20. ohos:text= "別のデバイスに移行する"  
  21. ohos:text_alignment= "垂直中央"  
  22. ohos:text_color= "#000000"  
  23. ohos:text_size= "16fp" />
  24.  
  25. <リストコンテナ
  26. ohos:id= "$+id:list_container_device"  
  27. ohos:height= "0vp"  
  28. ohos:width= "match_parent"  
  29. ohos:weight= "1" />
  30.  
  31. <方向レイアウト
  32. ohos:height= "50vp"  
  33. ohos:width= "match_parent"  
  34. ohos:orientation= "水平" >
  35.  
  36. <テキスト
  37. ohos:id= "$+id:operate_no"  
  38. ohos:height= "match_parent"  
  39. ohos:width= "0vp"  
  40. ohos:text= "キャンセル"  
  41. ohos:text_alignment= "中央"  
  42. ohos:text_color= "#1e90ff"  
  43. ohos:text_size= "17fp"  
  44. ohos:weight= "1" />
  45.  
  46. <コンポーネント
  47. ohos:height= "25vp"  
  48. ohos:width= "1vp"  
  49. ohos:background_element= "#cccccc"  
  50. ohos:layout_alignment= "垂直中央" />
  51.  
  52. <テキスト
  53. ohos:id= "$+id:operate_yes"  
  54. ohos:height= "match_parent"  
  55. ohos:width= "0vp"  
  56. ohos:text= "OK"  
  57. ohos:text_alignment= "中央"  
  58. ohos:text_color= "#1e90ff"  
  59. ohos:text_size= "17fp"  
  60. ohos:weight= "1" />
  61. </方向レイアウト>
  62. </方向レイアウト>
  63. </方向レイアウト>

14. トーストダイアログ.xml

  1. <方向レイアウト
  2. xmlns:ohos= "http://schemas.huawei.com/res/ohos"  
  3. ohos:height= "match_content"  
  4. ohos:width= "match_content"  
  5. ohos:orientation= "垂直"  
  6. ohos:background_element= "$graphic:background_gray_circle" >
  7. <テキスト
  8. ohos:id= "$+id:toast"  
  9. ohos:height= "match_content"  
  10. ohos:width= "match_content"  
  11. ohos:left_padding= "16vp"  
  12. ohos:right_padding= "16vp"  
  13. ohos:top_padding= "4vp"  
  14. ohos:bottom_padding= "4vp"  
  15. ohos:layout_alignment= "中央"  
  16. ohos:text_size= "20fp" />
  17. </方向レイアウト>

テレビ

1. TVAbilitySlice

  1. プライベートテキストtvTemp;
  2. プライベートテキストtvTempMax;
  3. プライベートテキストtvTempMin;
  4.  
  5. プライベートテキストtvHumi;
  6. プライベートテキストtvHumiMax;
  7. プライベートテキストtvHumiMin;
  8.  
  9. プライベートテキストtvCgas;
  10. プライベートテキストtvCgasMax;
  11. プライベートテキストtvCgasMin;
  12.  
  13. プライベートテキストtvTempStatus;
  14. プライベートテキストtvHumiStatus;
  15. プライベートテキストtvCgasStatus;
  16.  
  17.  
  18. プライベート ProgressBar rgbTem;
  19. プライベート ProgressBar rgbHumi;
  20. プライベート ProgressBar rgbCgas;
  21.  
  22. プライベート静的最終 HiLogLabel ラベル = 新しい HiLogLabel(HiLog.LOG_APP、0x0001、 "my_log" );
  23.  
  24. プライベートダブル 温度;
  25. プライベートダブルヒュミ;
  26. プライベートダブルcGas;
  27. プライベート SingleKvStore シングルKvストア;
  28. プライベート KvStoreObserverClient kvStoreObserverClient;
  29.  
  30. @オーバーライド
  31. パブリックvoid onStart(インテント インテント) {
  32. super.onStart(インテント);
  33. UIContent をスーパーに設定します。
  34. //没入型ステータスバーを設定する
  35. getWindow().addFlags(WindowManager.LayoutConfig.MARK_TRANSLUCENT_STATUS);
  36.  
  37. tvTemp = (テキスト) findComponentById(ResourceTable.Id_tvTemp);
  38. tvTempMax = (テキスト) findComponentById(ResourceTable.Id_tvMaxTemp);
  39. tvTempMin = (テキスト) findComponentById(ResourceTable.Id_tvMinTemp);
  40. rgbTem = (RoundProgressBar) リソーステーブルId_rgb_temでコンポーネントIDを検索します。
  41.  
  42. tvHumi = (テキスト) findComponentById(ResourceTable.Id_tvHumi);
  43. tvHumiMax = (テキスト) findComponentById(ResourceTable.Id_tvMaxHumi);
  44. tvHumiMin = (テキスト) findComponentById(ResourceTable.Id_tvMinHumi);
  45. rgbHumi = (RoundProgressBar) findComponentById(ResourceTable.Id_rgb_humi);
  46.  
  47. tvCgas = (テキスト) findComponentById(ResourceTable.Id_tvCgas);
  48. tvCgasMax = (テキスト) findComponentById(ResourceTable.Id_tvMaxCgas);
  49. tvCgasMin = (テキスト) findComponentById(ResourceTable.Id_tvMinCgas);
  50. rgbCgas = (RoundProgressBar) findComponentById(ResourceTable.Id_rgb_gas);
  51.  
  52. tvTempStatus = (テキスト) findComponentById(ResourceTable.Id_tvTempStatus);
  53. tvHumiStatus = (テキスト) findComponentById(ResourceTable.Id_tvHumiStatus);
  54. tvCgasStatus = (テキスト) findComponentById(ResourceTable.Id_tvCgasStatus);
  55.  
  56. 試す {
  57. KvManagerConfig 設定 = 新しい KvManagerConfig(getContext());
  58. KvManager kvManager = KvManagerFactory.getInstance().createKvManager(config);
  59. オプションCREATE = new Options();
  60. CREATE .setCreateIfMissing( true ).setEncrypt( false )
  61. .setKvStoreType(KvStoreType.SINGLE_VERSION)
  62. .setAutoSync( true );
  63. 単一の KvStore を kvManager.getKvStore( CREATE , DBUtils.KV_STORE_NAME );
  64. kvStoreObserverClient = 新しい KvStoreObserverClient();
  65. 単一の KvStore.subscribe(SubscribeType.SUBSCRIBE_TYPE_ALL、kvStoreObserverClient);
  66. } キャッチ (例外 e) {
  67. e.printStackTrace();
  68. }
  69.  
  70. }
  71.  
  72. プライベートクラスKvStoreObserverClientはKvStoreObserverを実装します{
  73.  
  74. @オーバーライド
  75. パブリックvoid onChange(ChangeNotification通知) {
  76. //onChangeメソッドは実際には子スレッドで実行されます
  77. getUITaskDispatcher().asyncDispatch(() -> {
  78. //ここでページUIコンポーネントの表示更新を実行します
  79. 非同期更新データ();
  80. });
  81. }
  82. }
  83.  
  84.  
  85. パブリックvoid asyncUpdateData(){
  86. //分散データのデータを照会する
  87. リスト<Entry> エントリ = singleKvStore.getEntries( "data" );
  88. エントリサイズ() > 0の場合{
  89. ZSONObject zsonObject = ZSONObject.stringToZSON(entries.get(0).getValue().getString());
  90. ダブル  temp = zsonObject.getDouble( "temp" );
  91. ダブルhumi = zsonObject.getDouble( "humi" );
  92. ダブルco2 = zsonObject.getDouble( "co2" );
  93. 文字列 strTemp = String.format( "%.1f" , temp );
  94. 文字列 strHumi = String.format( "%.1f" , humi);
  95. 文字列 strCO2 = String.format( "%.1f" , co2);
  96. 温度、湿度、CO2 を初期化します。
  97.  
  98. }
  99. }
  100.  
  101. プライベート void initView(文字列 strTemp、文字列 strHumi、文字列 strCO2) {
  102. temp = Double .valueOf(strTemp);
  103. 最大温度 = 45;
  104. 整数tempMin = -10;
  105.  
  106. humi =ダブル.valueOf(strHumi);
  107. 湿度最大値 = 70;
  108. 湿度最小値 = 10;
  109.  
  110. cGas = Double .valueOf(strCO2);
  111. 整数cGasMax = 1000;
  112.  
  113. 温度>-100)の場合
  114. 温度>温度最大値 ||温度<温度最小値){
  115. tvTemp.setTextColor(Color.RED);
  116. tvTempStatus.setText( "例外" );
  117. tvTempStatus.setTextColor(Color.RED);
  118. rgbTem.setProgressColor(Color.RED);
  119. }それ以外{
  120. tvTemp.setTextColor(Color.GREEN);
  121. tvTempStatus.setText( "通常" );
  122. tvTempStatus.setTextColor(Color.GREEN);
  123. rgbTem.setProgressColor(Color.GREEN);
  124.  
  125. }
  126. }それ以外{
  127. tvTemp.setTextColor(Color.BLACK);
  128. tvTempStatus.setTextColor(Color.BLACK);
  129. tvTempStatus.setText( "不明" );
  130. rgbTem.setProgressColor(Color.GREEN);
  131.  
  132. }
  133. tvTempMax.setText(tempMax + "℃" );
  134. tvTempMin.setText(tempMin + "℃" );
  135.  
  136. (湿度>-100)の場合{
  137. if (humi > humiMax || humi < humiMin) {
  138. tvHumi.setTextColor(Color.RED);
  139. tvHumiStatus.setText( "異常" );
  140. tvHumiStatus.setTextColor(Color.RED);
  141. rgbHumi.setProgressColor(Color.RED);
  142. }それ以外{
  143. tvHumi.setTextColor(Color.GREEN);
  144. tvHumiStatus.setText( "正常" );
  145. tvHumiStatus.setTextColor(Color.GREEN);
  146. rgbHumi.setProgressColor(Color.GREEN);
  147. }
  148. }それ以外{
  149. tvHumi.setTextColor(Color.BLACK);
  150. tvHumiStatus.setText( "不明" );
  151. tvHumiStatus.setTextColor(Color.BLACK);
  152. rgbHumi.setProgressColor(Color.GREEN);
  153.  
  154. }
  155. tvHumiMax.setText(humiMax + "% RH" );
  156. tvHumiMin.setText(humiMin + "% RH" );
  157.  
  158. cGas > -100 の場合 {
  159. cGas > cGasMaxの場合{
  160. tvCgas.setTextColor(Color.RED);
  161. tvCgasStatus.setText( "異常" );
  162. tvCgasStatus.setTextColor(Color.RED);
  163. rgbCgas.setProgressColor(Color.RED);
  164. }それ以外{
  165. tvCgas.setTextColor(Color.GREEN);
  166. tvCgasStatus.setText( "通常" );
  167. tvCgasStatus.setTextColor(Color.GREEN);
  168. }
  169. }それ以外{
  170. tvCgas.setTextColor(Color.BLACK);
  171. tvcgasstatus.settext( "不明" );
  172. tvcgasstatus.settextcolor(color.black);
  173. rgbcgas.setprogresscolor(color.green);
  174.  
  175. }
  176.  
  177. tvcgasmax.settext(cgasmax + "ppm" );
  178.  
  179. tvcgasmin.settext(0 + "ppm" );
  180.  
  181. if( temp <= -100){
  182. tvtemp.settext( "不明" );
  183. rgbtem.setProgressValue(0);
  184. }それ以外{
  185. tvtemp.settext( temp + "℃" );
  186. rgbtem.setProgressValue((( int temp );
  187. }
  188. if(humi <= -100){
  189. tvhumi.settext( "不明" );
  190. rgbhumi.setProgressValue(0);
  191. }それ以外{
  192. tvhumi.settext(humi + "%rh" );
  193. rgbhumi.setProgressValue(( int )humi);
  194. }
  195. if(cgas <= -100){
  196. tvcgas.settext( "不明" );
  197. rgbcgas.setProgressValue(0);
  198. }それ以外{
  199. tvcgas.settext(cgas + "ppm" );
  200. rgbcgas.setProgressValue((( int )cgas);
  201. }
  202.  
  203. }
  204.  
  205.  
  206. @オーバーライド
  207. onstop()で保護されたvoid {
  208. super.onstop();
  209. //サブスクライブを解除します
  210. // if(singlekvstore!= null ){
  211. // if(kvstoreobserverclient!= null ){
  212. // singlekvstore.unsubscribe(kvstoreobserverclient);
  213. // }
  214. // }
  215. }
  216. }

2。テレビ性

  1. パブリッククラスのテレビ性は能力を拡張します{
  2.  
  3. @オーバーライド
  4. on -start(意図の意図){
  5. super.onstart(意図);
  6. super.setmainroute(tvabilityslice.class.getName());
  7. //能力を実装するコードは、マルチデバイスコラボレーションアクセス許可を使用する必要性を明示的に宣言します
  8. RequestPermissionsFromUser(new String [] { "ohos.permiss.distributed_datasync" 、}、0);
  9. }
  10. }

3。ability_tv.xml

  1. <?xmlバージョン= "1.0" encoding = "utf-8" ?>
  2. <DirectionAllayout
  3. xmlns:ohos = "http://schemas.huawei.com/res/ohos"  
  4. ohos:height = "match_parent"  
  5. ohos:width = "match_parent"  
  6. OHOS:Orientation = "Vertical"  
  7. ohos:background_element = "$ media:haibao" >
  8.  
  9. <テキスト
  10. ohos:height = "match_content"  
  11. ohos:width = "match_content"  
  12. OHOS:Text = "温室データ監視"  
  13. ohos:text_color = "#ffffff"  
  14. ohos:text_size = "26vp"  
  15. ohos:layout_alignment = "center"  
  16. Ohos:top_margin = "50vp" />
  17.  
  18. <DepenentLayout
  19. ohos:height = "match_parent"  
  20. ohos:width = "match_parent" >
  21.  
  22. <DirectionAllayout
  23. ohos:height = "match_content"  
  24. ohos:width = "match_parent"  
  25. ohos:left_padding = "10vp"  
  26. ohos:right_padding = "10vp"  
  27. ohos:center_in_parent = "true"  
  28. Ohos:Orientation = "Horizo​​ntal" >
  29. <DirectionAllayout
  30. ohos:height = "match_content"  
  31. ohos:width = "0"  
  32. ohos:weight = "1"  
  33. ohos:layout_alignment = "center"  
  34. Ohos:Orientation = "Vertical" >
  35. <テキスト
  36. ohos:height = "match_content"  
  37. ohos:width = "match_content"  
  38. ohos:text = "温度データ"  
  39. ohos:text_size = "20vp"  
  40. Ohos:パディング= "5vp"  
  41. ohos:text_color = "#ffffff"  
  42. ohos:layout_alignment = "center" />
  43. <DirectionAllayout
  44. ohos:height = "3VP"  
  45. ohos:width = "match_parent"  
  46. ohos:background_element = "#ffffff"  
  47. ohos:top_margin = "15vp"  
  48. ohos:left_margin = "20vp"  
  49. ohos:right_margin = "20vp"  
  50. ohos:layout_alignment = "center"  
  51. ohos:bottom_margin = "15vp"  
  52. ohos:visibility = "Invisible" />
  53. <DirectionAllayout
  54. ohos:height = "match_content"  
  55. ohos:width = "match_content"  
  56. ohos:layout_alignment = "center"  
  57. Ohos:Orientation = "Horizo​​ntal" >
  58. <DirectionAllayout
  59. ohos:height = "match_parent"  
  60. ohos:width = "match_content"  
  61. Ohos:Orientation = "Vertical" >
  62. <テキスト
  63. ohos:height = "0"  
  64. ohos:width = "match_content"  
  65. Ohos:Text = "最高温度のしきい値:"  
  66. ohos:text_size = "16vp"  
  67. ohos:weight = "1"  
  68. ohos:text_color = "#000000" />
  69. <テキスト
  70. ohos:height = "0"  
  71. ohos:width = "match_content"  
  72. Ohos:Text = "現在の温度:"  
  73. ohos:text_size = "16vp"  
  74. ohos:weight = "1"  
  75. ohos:text_color = "#000000" />
  76. <テキスト
  77. ohos:height = "0"  
  78. ohos:width = "match_content"  
  79. Ohos:Text = "最低温度しきい値:"  
  80. ohos:text_size = "16vp"  
  81. ohos:weight = "1"  
  82. ohos:text_color = "#000000" />
  83. </directionallayout>
  84.  
  85. <DepenentLayout
  86. Ohos:height = "100VP"  
  87. ohos:width = "100vp" >
  88. <roundprogressbar
  89. ohos:id = "$+id:rgb_tem"  
  90. ohos:height = "match_parent"  
  91. ohos:width = "match_parent"  
  92. ohos:progress_width = "10vp"  
  93. Ohos:Progress = "0"  
  94. Ohos: max = "100"  
  95. ohos:start_angle = "215"  
  96. ohos:max_angle = "290"  
  97. ohos:progress_color = "#00ff00"  
  98. ohos:center_in_parent = "true" />
  99. <テキスト
  100. ohos:id = "$+id:tvmaxtemp"  
  101. ohos:height = "match_content"  
  102. ohos:width = "match_content"  
  103. ohos:text_size = "15vp"  
  104. ohos:text_color = "#000000"  
  105. ohos:align_parent_top = "true"  
  106. ohos:text = "不明"  
  107. ohos:top_margin = "8vp"  
  108. ohos:horizo​​ntal_center = "true" />
  109. <テキスト
  110. ohos:id = "$+id:tvtemp"  
  111. ohos:height = "match_content"  
  112. ohos:width = "match_content"  
  113. ohos:text_size = "15vp"  
  114. ohos:text_color = "#000000"  
  115. ohos:text = "不明"  
  116. ohos:center_in_parent = "true" />
  117. <テキスト
  118. ohos:id = "$+id:tvmintemp"  
  119. ohos:height = "match_content"  
  120. ohos:width = "match_content"  
  121. ohos:text_size = "14vp"  
  122. ohos:text_color = "#000000"  
  123. ohos:text = "不明"  
  124. ohos:bottom_margin = "8vp"  
  125. ohos:align_parent_bottom = "true"  
  126. ohos:horizo​​ntal_center = "true" />
  127. </DepenentLayout>
  128.  
  129. </directionallayout>
  130.  
  131.  
  132. <DirectionAllayout
  133. ohos:height = "3VP"  
  134. ohos:width = "match_parent"  
  135. ohos:background_element = "#ffffff"  
  136. ohos:top_margin = "15vp"  
  137. ohos:left_margin = "20vp"  
  138. ohos:right_margin = "20vp"  
  139. ohos:layout_alignment = "center"  
  140. ohos:bottom_margin = "15vp"  
  141. ohos:visibility = "Invisible" />
  142. <DirectionAllayout
  143. ohos:height = "match_content"  
  144. ohos:width = "match_content"  
  145. ohos:layout_alignment = "center"  
  146. Ohos:Orientation = "Horizo​​ntal" >
  147. <テキスト
  148. ohos:height = "match_content"  
  149. ohos:width = "match_content"  
  150. Ohos:Text = "温度状態:"  
  151. ohos:text_size = "18vp"  
  152. ohos:text_color = "#000000" />
  153. <テキスト
  154. ohos:id = "$+id:tvtempstatus"  
  155. ohos:height = "match_content"  
  156. ohos:width = "match_content"  
  157. ohos:text = "不明"  
  158. ohos:text_size = "18vp"  
  159. ohos:text_color = "#000000" />
  160. </directionallayout>
  161. </directionallayout>
  162.  
  163.  
  164. <DirectionAllayout
  165. Ohos:height = "90vp"  
  166. ohos:width = "1vp"  
  167. ohos:background_element = "#000000"  
  168. ohos:top_margin = "6vp"  
  169. ohos:layout_alignment = "center" />
  170.  
  171. <DirectionAllayout
  172. ohos:height = "match_content"  
  173. ohos:width = "0"  
  174. ohos:weight = "1"  
  175. ohos:layout_alignment = "center"  
  176. Ohos:Orientation = "Vertical" >
  177. <テキスト
  178. ohos:height = "match_content"  
  179. ohos:width = "match_content"  
  180. Ohos:Text = "湿度データ"  
  181. ohos:text_size = "20vp"  
  182. Ohos:パディング= "5vp"  
  183. ohos:text_color = "#ffffff"  
  184. ohos:layout_alignment = "center" />
  185. <DirectionAllayout
  186. ohos:height = "3VP"  
  187. ohos:width = "match_parent"  
  188. ohos:background_element = "#ffffff"  
  189. ohos:top_margin = "15vp"  
  190. ohos:left_margin = "20vp"  
  191. ohos:right_margin = "20vp"  
  192. ohos:layout_alignment = "center"  
  193. ohos:bottom_margin = "15vp"  
  194. ohos:visibility = "Invisible" />
  195.  
  196.  
  197. <DirectionAllayout
  198. ohos:height = "match_content"  
  199. ohos:width = "match_content"  
  200. ohos:layout_alignment = "center"  
  201. Ohos:Orientation = "Horizo​​ntal" >
  202. <DirectionAllayout
  203. ohos:height = "match_parent"  
  204. ohos:width = "match_content"  
  205. Ohos:Orientation = "Vertical" >
  206. <テキスト
  207. ohos:height = "0"  
  208. ohos:width = "match_content"  
  209. Ohos:Text = "最大湿度のしきい値:"  
  210. ohos:text_size = "16vp"  
  211. ohos:weight = "1"  
  212. ohos:text_color = "#000000" />
  213. <テキスト
  214. ohos:height = "0"  
  215. ohos:width = "match_content"  
  216. Ohos:Text = "現在の湿度:"  
  217. ohos:text_size = "16vp"  
  218. ohos:weight = "1"  
  219. ohos:text_color = "#000000" />
  220. <テキスト
  221. ohos:height = "0"  
  222. ohos:width = "match_content"  
  223. Ohos:Text = "最小湿度のしきい値:"  
  224. ohos:text_size = "16vp"  
  225. ohos:weight = "1"  
  226. ohos:text_color = "#000000" />
  227. </directionallayout>
  228.  
  229. <DepenentLayout
  230. Ohos:height = "100VP"  
  231. ohos:width = "100vp" >
  232. <roundprogressbar
  233. Ohos:id = "$+id:rgb_humi"  
  234. ohos:height = "match_parent"  
  235. ohos:width = "match_parent"  
  236. ohos:progress_width = "10vp"  
  237. Ohos:Progress = "0"  
  238. Ohos: max = "100"  
  239. ohos:start_angle = "215"  
  240. ohos:max_angle = "290"  
  241. ohos:progress_color = "#00ff00"  
  242. ohos:center_in_parent = "true" />
  243. <テキスト
  244. ohos:id = "$+id:tvmaxhumi"  
  245. ohos:height = "match_content"  
  246. ohos:width = "match_content"  
  247. ohos:text_size = "15vp"  
  248. ohos:text_color = "#000000"  
  249. ohos:text = "不明"  
  250. ohos:top_margin = "8vp"  
  251. ohos:horizo​​ntal_center = "true"  
  252. ohos:align_parent_top = "true" />
  253. <テキスト
  254. ohos:id = "$+id:tvhumi"  
  255. ohos:height = "match_content"  
  256. ohos:width = "match_content"  
  257. ohos:text_size = "15vp"  
  258. ohos:text_color = "#000000"  
  259. ohos:text = "不明"  
  260. ohos:center_in_parent = "true" />
  261. <テキスト
  262. ohos:id = "$+id:tvminhumi"  
  263. ohos:height = "match_content"  
  264. ohos:width = "match_content"  
  265. ohos:text_size = "15vp"  
  266. ohos:text_color = "#000000"  
  267. ohos:horizo​​ntal_center = "true"  
  268. ohos:text = "不明"  
  269. ohos:bottom_margin = "8vp"  
  270. ohos:align_parent_bottom = "true" />
  271. </DepenentLayout>
  272.  
  273. </directionallayout>
  274.  
  275. <DirectionAllayout
  276. ohos:height = "3VP"  
  277. ohos:width = "match_parent"  
  278. ohos:background_element = "#ffffff"  
  279. ohos:top_margin = "15vp"  
  280. ohos:left_margin = "20vp"  
  281. ohos:right_margin = "20vp"  
  282. ohos:layout_alignment = "center"  
  283. ohos:bottom_margin = "15vp"  
  284. ohos:visibility = "Invisible" />
  285. <DirectionAllayout
  286. ohos:height = "match_content"  
  287. ohos:width = "match_content"  
  288. ohos:layout_alignment = "center"  
  289. Ohos:Orientation = "Horizo​​ntal" >
  290. <テキスト
  291. ohos:height = "match_content"  
  292. ohos:width = "match_content"  
  293. Ohos:Text = "湿度状態:"  
  294. ohos:text_size = "18vp"  
  295. ohos:text_color = "#000000" />
  296. <テキスト
  297. ohos:id = "$+id:tvhumistatus"  
  298. ohos:height = "match_content"  
  299. ohos:width = "match_content"  
  300. ohos:text = "不明"  
  301. ohos:text_size = "18vp"  
  302. ohos:text_color = "#000000" />
  303. </directionallayout>
  304.  
  305. </directionallayout>
  306.  
  307.  
  308.  
  309. <DirectionAllayout
  310. Ohos:height = "90vp"  
  311. ohos:width = "1vp"  
  312. ohos:background_element = "#000000"  
  313. ohos:top_margin = "6vp"  
  314. ohos:layout_alignment = "center" />
  315.  
  316.  
  317.  
  318.  
  319. <DirectionAllayout
  320. ohos:height = "match_content"  
  321. ohos:width = "0"  
  322. ohos:weight = "1"  
  323. ohos:layout_alignment = "center"  
  324. Ohos:Orientation = "Vertical" >
  325. <テキスト
  326. ohos:height = "match_content"  
  327. ohos:width = "match_content"  
  328. OHOS:text = "CO2データ"  
  329. ohos:text_size = "20vp"  
  330. Ohos:パディング= "5vp"  
  331. ohos:text_color = "#ffffff"  
  332. ohos:layout_alignment = "center" />
  333. <DirectionAllayout
  334. ohos:height = "3VP"  
  335. ohos:width = "match_parent"  
  336. ohos:background_element = "#ffffff"  
  337. ohos:top_margin = "15vp"  
  338. ohos:left_margin = "20vp"  
  339. ohos:right_margin = "20vp"  
  340. ohos:layout_alignment = "center"  
  341. ohos:bottom_margin = "15vp"  
  342. ohos:visibility = "Invisible" />
  343. <DirectionAllayout
  344. ohos:height = "match_content"  
  345. ohos:width = "match_content"  
  346. ohos:layout_alignment = "center"  
  347. Ohos:Orientation = "Horizo​​ntal" >
  348. <DirectionAllayout
  349. ohos:height = "match_parent"  
  350. ohos:width = "match_content"  
  351. Ohos:Orientation = "Vertical" >
  352. <テキスト
  353. ohos:height = "0"  
  354. ohos:width = "match_content"  
  355. Ohos:Text = "最大ガス増分:"  
  356. ohos:text_size = "16vp"  
  357. ohos:weight = "1"  
  358. ohos:text_color = "#000000" />
  359. <テキスト
  360. ohos:height = "0"  
  361. ohos:width = "match_content"  
  362. Ohos:Text = "Current Increment:"  
  363. ohos:text_size = "16vp"  
  364. ohos:weight = "1"  
  365. ohos:text_color = "#000000" />
  366. <テキスト
  367. ohos:height = "0"  
  368. ohos:width = "match_content"  
  369. Ohos:Text = "最小ガス増分:"  
  370. ohos:text_size = "16vp"  
  371. ohos:weight = "1"  
  372. ohos:text_color = "#000000" />
  373. </directionallayout>
  374.  
  375. <DepenentLayout
  376. Ohos:height = "100VP"  
  377. ohos:width = "100vp" >
  378. <roundprogressbar
  379. ohos:id = "$+id:rgb_gas"  
  380. ohos:height = "match_parent"  
  381. ohos:width = "match_parent"  
  382. ohos:progress_width = "10vp"  
  383. Ohos:Progress = "0"  
  384. Ohos: max = "1000"  
  385. ohos:start_angle = "215"  
  386. ohos:max_angle = "290"  
  387. ohos:progress_color = "#00ff00"  
  388. ohos:center_in_parent = "true" />
  389. <テキスト
  390. ohos:id = "$+id:tvmaxcgas"  
  391. ohos:height = "match_content"  
  392. ohos:width = "match_content"  
  393. ohos:text_size = "15vp"  
  394. ohos:text = "不明"  
  395. ohos:text_color = "#000000"  
  396. ohos:top_margin = "8vp"  
  397. ohos:horizo​​ntal_center = "true"  
  398. ohos:align_parent_top = "true" />
  399. <テキスト
  400. ohos:id = "$+id:tvcgas"  
  401. ohos:height = "match_content"  
  402. ohos:width = "match_content"  
  403. ohos:text_size = "15vp"  
  404. ohos:text = "不明"  
  405. ohos:text_color = "#000000"  
  406. ohos:center_in_parent = "true" />
  407. <テキスト
  408. ohos:id = "$+id:tvmincgas"  
  409. ohos:height = "match_content"  
  410. ohos:width = "match_content"  
  411. ohos:text_size = "15vp"  
  412. ohos:text = "不明"  
  413. ohos:text_color = "#000000"  
  414. ohos:bottom_margin = "8vp"  
  415. ohos:horizo​​ntal_center = "true"  
  416. ohos:align_parent_bottom = "true" />
  417. </DepenentLayout>
  418. </directionallayout>
  419.  
  420. <DirectionAllayout
  421. ohos:height = "3VP"  
  422. ohos:width = "match_parent"  
  423. ohos:background_element = "#ffffff"  
  424. ohos:top_margin = "15vp"  
  425. ohos:left_margin = "20vp"  
  426. ohos:right_margin = "20vp"  
  427. ohos:layout_alignment = "center"  
  428. ohos:bottom_margin = "15vp"  
  429. ohos:visibility = "Invisible" />
  430.  
  431.  
  432. <DirectionAllayout
  433. ohos:height = "match_content"  
  434. ohos:width = "match_content"  
  435. ohos:layout_alignment = "center"  
  436. Ohos:Orientation = "Horizo​​ntal" >
  437. <テキスト
  438. ohos:height = "match_content"  
  439. ohos:width = "match_content"  
  440. Ohos:Text = "Gas State:"  
  441. ohos:text_size = "18vp"  
  442. ohos:text_color = "#000000" />
  443. <テキスト
  444. ohos:id = "$+id:tvcgasstatus"  
  445. ohos:height = "match_content"  
  446. ohos:width = "match_content"  
  447. ohos:text = "不明"  
  448. ohos:text_size = "18vp"  
  449. ohos:text_color = "#000000" />
  450. </directionallayout>
  451. </directionallayout>
  452. </directionallayout>
  453. </DepenentLayout>
  454.  
  455. </directionallayout>

4.config.json

  1. {
  2. "アプリ" : {
  3. 「Bundlename」 「com.isoftstone。distributeddata」
  4. 「ベンダー」 「isoftstone」
  5. 「バージョン」 :{
  6. 「コード」 :1000000、
  7. 「名前」 「1.0.0」  
  8. }
  9. },
  10. 「deviceconfig」 :{}、
  11. 「モジュール」 :{
  12. 「パッケージ」 "com.isoftstone.distributeddata"
  13. 「名前」 「myApplication」
  14. 「Mainability」 "com.isoftstone.distributeddata.com.isoftstone.distributeddata.tvability"
  15. 「DeviceType」 :[
  16. "電話"  
  17. ]、
  18. 「ディストリビューション」 :{
  19. 「配信ウィットインストール」 本当
  20. 「moduleName」 「エントリ」
  21. 「ModuleType」 「エントリ」
  22. 「installationfree」 false  
  23. },
  24. 「reqpermissions」 :[
  25. {
  26. 「名前」 "ohos.permiss.distributed_datasync"  
  27. }
  28. ]、
  29. 「能力」 :[
  30. {
  31. 「スキル」 :[
  32. {
  33. 「エンティティ」 :[
  34. 「entity.system.home」  
  35. ]、
  36. 「アクション」 :[
  37. 「action.system.home」  
  38. ]
  39. }
  40. ]、
  41. 「オリエンテーション」 「風景」
  42. 「名前」 「com.isoftstone.distributeddata.tvability」
  43. 「アイコン」 「$ Media:Icon」
  44. 「説明」 "$ string:tvability_description"
  45. 「ラベル」 "$ string:entry_tvability"
  46. 「タイプ」 「ページ」
  47. 「LaunchType」 「標準」  
  48. }
  49. ]、
  50. 「メタデータ」 :{
  51. 「customizata」 :[
  52. {
  53. 「名前」 「hwc-theme」
  54. 「値」 「Androidhwext:style/theme.emui.notitlebar」
  55. "余分な" ""  
  56. }
  57. ]
  58. }
  59. }
  60. }

詳細については、ご覧ください。

51CTOとHungmengテクノロジーコミュニティを構築するためのHuaweiの公式協力

https://harmonyos..co

<<:  分散データベースの OpenHarmony ソースコード分析

>>:  Amazon Web Services: 自社開発チップによる先駆者のイノベーション

推薦する

A5 マーケティング: B2B サイトにおけるモイスチャー マーケティングの影響はどの程度ですか?

B2Bを運営するウェブマスターにとって、B2Bの存続状況と将来は、さまざまなB2B業界の発展における...

新人になるときに注意すべきこと

今日は、SEO 初心者から SEO エキスパートに素早く変身する方法を皆さんにお伝えし、間違った方法...

コンテナを宇宙の中心として扱わないでください。 Docker 10 周年: 従業員 #1 からの感想

サム・アルバ著ノアが編集この記事の著者である Sam Alba は現在、Dagger の共同設立者兼...

現実を直視し、自分に頼ることが、草の根のタオバオ顧客にとって唯一の道である

近年、インターネットの発展は飛躍的に進んでいると言えます。TaobaoとAlimamaの継続的な成長...

ビジネスに最適なクラウド プラットフォームを選択する方法

クラウド プラットフォームとオンプレミス サーバーは、現在、主流の IT イニシアチブの最前線にあり...

Tmall副社長独占インタビュー:プラットフォームのポリシーとアイデアを詳細に説明

最近、天下網の記者が天猫副社長の喬鋒氏にインタビューし、淘宝ブランド、伝統ブランド、海外の大手ブラン...

シェア: 新しいウェブサイトを立ち上げてから35日以内にBaiduホームページにランクインした実践的な経験

私はしばらく企業ウェブサイトの仕事をしてきましたが、SEOの専門家に比べると、私はまだ新人です。私た...

権威あるインターネットアカウントを構築するためのいくつかの原則

現在、ほぼすべてのインターネット サイトがユーザー登録とログイン機能を提供しており、これによってすべ...

velocihost: 米国のプロフェッショナル GPU サーバー サプライヤー。多数の GPU グラフィック カード モデルから選択可能

velocihost は 2009 年に設立されたアメリカの会社です。主に米国のマイアミとニューヨー...

入札することで月に10万元稼げるって本当ですか?

Googleが中国から撤退して以来、Baiduは中国の検索エンジン市場の80%以上を独占している。独...

Kubernetesの成功の秘密

K8が急速に成長している理由と将来に期待できること[[322296]]写真はUnsplashのJun...

2回の核分裂実験の後、これらの提案と注意事項を知っておく必要があります

月収10万元の起業の夢を実現するミニプログラム起業支援プラン今年初めから、分裂はインターネット業界で...

フレンドリーなリンク交換プラットフォームを使用してウェブサイトを宣伝する

今日、友好リンク交換プラットフォームでB型肝炎治療ネットワークの友好リンクを探していたところ、情報ナ...