[[440298]] 詳細については、以下をご覧ください。 51CTOとHuaweiが共同で構築したHongmengテクノロジーコミュニティ https://harmonyos..co 導入分散データ サービス (DDS) は、アプリケーションに異なるデバイス間でデータベース データを分散する機能を提供します。分散データ インターフェイスを呼び出すことにより、アプリケーションはデータを分散データベースに保存します。分散データ サービスは、アカウント、アプリケーション、データベースの 3 つを組み合わせることで、異なるアプリケーションに属するデータを分離し、異なるアプリケーション間のデータが分散データ サービスを通じて相互にアクセスできないようにします。分散データ サービスは、信頼できる認証済みデバイス間のアプリケーション データの同期をサポートし、複数の端末デバイスで最終的に一貫したデータ アクセス エクスペリエンスをユーザーに提供します。 機能紹介HarmonyOS をベースとしたこの分散データ サービス機能は、一方では、農業用温室内の温度、湿度、二酸化炭素濃度などのデータの収集をシミュレートし、収集したデータを携帯電話に表示します。一方、携帯電話のデータは他のデバイス(スマートスクリーン、時計、PADなど)に移行でき、一部のデータの分析と表示を行うことができます。 前提:異なるデバイス間で分散データ サービスの同期機能を実現するには、同じ Huawei アカウントでログインし、同じアプリケーション パッケージ名を使用し、同じネットワーク上で作業する必要があります。両方のデバイスで同時に Bluetooth をオンにすることもできます。 開発ガイド1. config.jsonに権限を追加する// 能力と同じディレクトリレベルに追加 - 「必要な権限」 : [
- {
- 「名前」 : 「ohos.permission.DISTRIBUTED_DATASYNC」
- }
- ]
2. MainAbilityに権限を追加する- @オーバーライド
- パブリックvoid onStart(インテント インテント) {
- super.onStart(インテント);
- super.setMainRoute(MainAbilitySlice.class.getName());
- // Abilityを実装するコードは、マルチデバイス共同アクセス権限を使用する必要があることを明示的に宣言します
- requestPermissionsFromUser(新しい文字列[]{
- "ohos.permission.DISTRIBUTED_DATASYNC" }, 0);
-
- }
3. 構成に従って分散データベース管理クラスインスタンスKvManagerを構築し、分散データベースオブジェクトSingleKvStoreを作成します。 //データベースを初期化する - // 初期パラメータコンテキスト: Context context = getApplicationContext(); storeId は、"testApp" のように自分で定義できる、文字列型の分散データベース ID です。
- 公共 静的SingleKvStore initOrGetDB(コンテキストコンテキスト、文字列ストアID) {
- KvManagerConfig kvManagerConfig = 新しい KvManagerConfig(コンテキスト);
- kvManager = KvManagerFactory.getInstance().createKvManager(kvManagerConfig);
- オプション options = new Options();
- オプション.setCreateIfMissing( true )
- .setEncrypt( false )
- .setKvStoreType(KvStoreType.SINGLE_VERSION) //データベース タイプ: 単一バージョンの分散データベース
- .setAutoSync( true ); //自動同期はtrue 、手動同期はfalse
- singleKvStore = kvManager.getKvStore(オプション, ストアID);
- singleKvStoreを返します。
- }
4. 単一バージョンの分散データベースにデータを書き込む- //キーと値の形式で分散データベースに保存します
- 試す {
- // 収集したデータをキー値形式で分散データベースに保存します
- DataModle dataModle=new DataModle();
- データモジュール.setTemp( temp );
- データモデルを設定します。
- データモデルをco2に設定します。
- 文字列 jsonString= ZSONObject.toZSONString(dataModle);
- 単一のKvStore.putString( "データ" 、jsonString);
- } キャッチ (KvStoreException e) {
- LogUtils.debug(TAG、 「DataServiceAbility::updateData()」 +e.getMessage());
- }
5. 分散データの変更をサブスクライブします。クライアントはデータの変更を監視するためにKvStoreObserverインターフェースを実装する必要がある- //サブスクリプションタイプ SubscribeType.SUBSCRIBE_TYPE_ALL は、ローカルデバイスや他の周辺機器と同期できることを意味します
- 内部KvStoreObserver = 新しい内部KvStoreObserver();
- 単一の KvStore.subscribe(SubscribeType.SUBSCRIBE_TYPE_ALL、内部 KvStoreObserver);
- } キャッチ (KvStoreException e) {
- e.printStackTrace();
- }
-
- パブリッククラスInnerKvStoreObserverはKvStoreObserverを実装します{
-
- @オーバーライド
- パブリックvoid onChange(ChangeNotification changeNotification) {
- // ページ上のデータを更新します。落とし穴もあります。 onChange メソッドは実際には子スレッドで実行されます。
- メインアビリティスライス.taskDispatcher.asyncDispatch(() -> {
- //ここでページUIコンポーネントの表示更新を実行します
- UIData をフラッシュします。
- });
- }
- }
6. 分散データベースデータを取得する- // 分散データのデータを照会します。 get(String key ) または getEntries(String key ) メソッドを通じてデータを取得できます。
- リスト<Entry> エントリ = singleKvStore.getEntries( "data" );
- エントリサイズ() > 0の場合{
- ZSONObject zsonObject = ZSONObject.stringToZSON(entries.get(0).getValue().getString());
- ダブル temp = zsonObject.getDouble( "temp" );
- ダブルhumi = zsonObject.getDouble( "humi" );
- ダブルco2 = zsonObject.getDouble( "co2" );
- 文字列 strTemp = String.format( "%.1f" , temp );
- 文字列 strHumi = String.format( "%.1f" , humi);
- 文字列 strCO2 = String.format( "%.1f" , co2);
- tvTemp.setText(strTemp+ "℃" );
- tvHumi.setText(strHumi+ "%RH" );
- tvCo2.setText(strCO2+ "ppm" );
- }
7. 購読解除。通常はページが破棄されたときに呼び出されます。つまり、onStop() で呼び出されます。- シングルKvStore != null の場合{
- 単一のKvStore。unSubscribe(内部KvStoreObserver);
- }
8. データを他のデバイスと同期します。接続されているデバイスのリストを取得し、同期方法を選択してデータを同期します- リスト<DeviceInfo> onlineDevices = DeviceManager
- .getDeviceList(デバイス情報.FLAG_GET_ONLINE_DEVICE);
- リスト<String> deviceIdList = 新しいArrayList<>();
- (デバイス情報デバイス情報:デバイス情報リスト) {
- デバイスIDリストに追加します(デバイス情報を取得します)。
- }
- //指定されたデバイスに移行し、デバイスIDリストを渡します
- 単一のKvStore.sync(デバイスIDリスト、SyncMode.PUSH_ONLY);
このプロジェクトでは、バックグラウンド サービスでスケジュールされたタスクを使用して、農業温室データの収集をシミュレートし、データを分散データベースにリアルタイムで保存し、メイン インターフェイスでデータの変更を監視して、データをリアルタイムで更新します。移行するデバイスを選択すると、対応するデバイスにデータを移行できます。
モバイルアプリを開いたときのインターフェース
TVアプリケーションを開いたときのインターフェース
右上隅の移行ボタンをクリックし、デバイスの移行(P40-0036)を選択します。
移行後、左側のデバイスのデータと右側のデバイスのデータが同期されます。 ソースコードを添付携帯1. 電話機能スライス - パブリッククラス PhoneAbilitySlice は AbilitySlice を拡張します {
- プライベート SingleKvStore シングルKvストア;
- プライベート InnerKvStoreObserver innerKvStoreObserver;
- プライベートインテント serviceIntent;
- プライベートテキストtvTemp;
- プライベートテキストtvHumi;
- プライベートテキストtvCo2;
- プライベートDeviceData chooseDevice;
- プライベート DevicesProvider devicesProvider;
- プライベート CommonDialog commonDialog;
- プライベート文字列 TAG = "MainAbilitySlice" ;
- プライベートList<String>deviceIdList;
- @オーバーライド
- パブリックvoid onStart(インテント インテント) {
- super.onStart(インテント);
- UIContent をスーパーに設定します。
- // 没入型ステータスバーを設定します getWindow().addFlags(WindowManager.LayoutConfig.MARK_TRANSLUCENT_STATUS);
- ビューを初期化します。
- サービスの初期化();
- 試す {
- //データベースを取得する
- 単一の KvStore = DBUtils.initOrGetDB(これ、DBUtils.KV_STORE_NAME);
- 内部KvStoreObserver = 新しい内部KvStoreObserver();
- //分散データベースをサブスクライブする
- 単一の KvStore.subscribe(SubscribeType.SUBSCRIBE_TYPE_ALL、内部 KvStoreObserver);
- } キャッチ (KvStoreException e) {
- LogUtils.debug(TAG、 "MainAbilitySlice::onStart/" +e.getMessage());
- }
- }
- プライベートvoid initService() {
- //ServiceAbilityを開始する
- サービスインテント = 新しいインテント();
- 操作 operation = new Intent.OperationBuilder()
- .withDeviceId( "" )
- .withBundleName( "com.isoftstone.distributeddata" )
- .withAbilityName( "com.isoftstone.distributeddata.DataServiceAbility" )
- 。建てる();
- serviceIntent.setOperation(操作);
- サービスインテントを開始します。
- }
- プライベートvoid initView() {
- tvTemp = (テキスト) findComponentById(ResourceTable.Id_text_temp);
- tvHumi = (テキスト) findComponentById(ResourceTable.Id_text_humi);
- tvCo2 = (テキスト) findComponentById(ResourceTable.Id_text_co2);
- ボタン bt = (ボタン) findComponentById(ResourceTable.Id_bt_continue);
- bt.setClickedListener(コンポーネント -> {
- (component.getId() == ResourceTable.Id_bt_continue) の場合 {
- //オンラインデバイスを表示
- List<DeviceInfo> onlineDevices = DeviceManager
- .getDeviceList(デバイス情報.FLAG_GET_ONLINE_DEVICE);
- リスト<DeviceData> deviceDatas = 新しいArrayList<>();
- onlineDevices == null || onlineDevices.size () < 1の場合{
- CustomerDialog.showToastDialog(getAbility(), "オンラインデバイスがありません" );
- }それ以外{
- (デバイス情報デバイス情報:オンラインデバイス) {
- deviceDatas.add (新しい DeviceData( false 、 deviceInfo));
- }
- デバイスデータを表示します。
- }
- }
- });
- }
- プライベート void showDevices(List<DeviceData> deviceDatas) {
- デバイスを選択 = null ;
- commonDialog = 新しい CommonDialog(this);
- コンポーネント コンポーネント = LayoutScatter.getInstance(this)
- .parse(ResourceTable.Layout_dialog_layout_device, null 、 true );
- リストコンテナー listContainer = (リストコンテナー) component.findComponentById(ResourceTable.Id_list_container_device);
- devicesProvider = 新しい DevicesProvider(this、deviceDatas);
- listContainer.setItemProvider(devicesProvider);
- listContainer.setItemClickedListener((listContainer1,component1,position,l) -> {
- デバイスを選択します = deviceDatas.get(位置);
- ( int i = 0 ; i < deviceDatas.size ( ); i++) {
- if (i == 位置) {
- deviceDatas.set (i、新しい DeviceData( true 、 deviceDatas.get(i).getDeviceInfo()));
- }それ以外{
- deviceDatas.set (i、新しい DeviceData( false 、 deviceDatas.get(i).getDeviceInfo()));
- }
- }
- devicesProvider = 新しい DevicesProvider(this、deviceDatas);
- listContainer1.setItemProvider(devicesProvider);
- });
- テキスト tvCancle = (テキスト) component.findComponentById(ResourceTable.Id_operate_no);
- テキスト tvSure = (テキスト) component.findComponentById(ResourceTable.Id_operate_yes);
-
- tvCancle.setClickedListener(component12 -> commonDialog.destroy());
-
- tvSure.setClickedListener(component13 -> {
- (chooseDevice == null )の場合{
- CustomerDialog.showToastDialog(this, "デバイスを選択してください" );
- }それ以外{
- 試す {
- デバイスIDリスト = 新しいArrayList<>();
- デバイスIDリスト。 (chooseDevice.getDeviceInfo().getDeviceId())を追加します。
- //手動で同期されたデバイスリスト
- 単一のKvStore.sync(デバイスIDリスト、SyncMode.PUSH_ONLY);
- 共通ダイアログを破棄します。
- } キャッチ (IllegalStateException e) {
- //フロー例外をキャプチャして、プロセスがフローを再度開始するのを防ぎます
- LogUtils.debug(TAG、 "MainAbilitySlice::singleKvStore.sync()/" +e.getMessage());
- }
- }
- });
- commonDialog.setSize(MATCH_PARENT, MATCH_CONTENT);
- commonDialog.setAlignment(LayoutAlignment.BOTTOM);
- commonDialog.setCornerRadius(10);
- commonDialog.setAutoClosable( true );
- commonDialog.setContentCustomComponent(コンポーネント);
- commonDialog.setTransparent( true );
- 共通ダイアログを表示します。
- }
- パブリッククラスInnerKvStoreObserverはKvStoreObserverを実装します{
-
- @オーバーライド
- パブリックvoid onChange(ChangeNotification changeNotification) {
- //onChangeメソッドは実際には子スレッドで実行されます
- getUITaskDispatcher().asyncDispatch(() -> {
- //ここでページUIコンポーネントの表示更新を実行します
- 非同期更新データ();
- });
- }
- }
- パブリックvoid asyncUpdateData(){
- //分散データのデータを照会する
- リスト<Entry> エントリ = singleKvStore.getEntries( "data" );
- エントリサイズ() > 0の場合{
- ZSONObject zsonObject = ZSONObject.stringToZSON(entries.get(0).getValue().getString());
- ダブル temp = zsonObject.getDouble( "temp" );
- ダブルhumi = zsonObject.getDouble( "humi" );
- ダブルco2 = zsonObject.getDouble( "co2" );
- 文字列 strTemp = String.format( "%.1f" , temp );
- 文字列 strHumi = String.format( "%.1f" , humi);
- 文字列 strCO2 = String.format( "%.1f" , co2);
- tvTemp.setText(strTemp+ "℃" );
- tvHumi.setText(strHumi+ "%RH" );
- tvCo2.setText(strCO2+ "ppm" );
- //手動で同期されたデバイスリスト
- シングルKvStoreの場合! = null ) {
- if(deviceIdList!= null &&deviceIdList.size ()>0) {
- 単一のKvStore.sync(デバイスIDリスト、SyncMode.PUSH_ONLY);
- }
- }
- }
- }
-
- @オーバーライド
- パブリックvoid onActive() {
- スーパーのonActive();
- }
- @オーバーライド
- パブリックvoid onForeground(インテント インテント) {
- super.onForeground(インテント);
- }
- @オーバーライド
- 保護されたvoid onStop() {
- スーパーのonStop();
- //サービスを破棄する
- サービスインテントを停止します。
- //データベースを削除する
- DBUtils.clearDB();
- // 登録解除
- シングルKvStore != null の場合{
- if(innerKvStoreObserver!= null ){
- 単一のKvStore。unSubscribe(内部KvStoreObserver);
- }
- }
- }
- }
2. データサービス能力 - パブリッククラスDataServiceAbilityはAbilityを拡張します{
- プライベート静的最終 HiLogLabel LABEL_LOG = new HiLogLabel(3, 0xD001100, "デモ" );
- プライベート SingleKvStore シングルKvストア;
- プライベート NotificationRequest リクエスト。
- プライベートタイマー mTimer;
- プライベート TimerTask mTimerTask;
- プライベート文字列 TAG = "DataServiceAbility" ;
- @オーバーライド
- パブリックvoid onStart(インテント インテント) {
- LogUtils.debug(TAG, "DataServiceAbility::onStart" );
- super.onStart(インテント);
- //フロントデスクサービスを作成する
- ForeService を作成します。
- 試す {
- 単一の KvStore = DBUtils.initOrGetDB(これ、DBUtils.KV_STORE_NAME);
- } キャッチ (例外 e) {
- LogUtils.debug(TAG、 「DataServiceAbility::onStart()」 +e.getMessage());
- }
- // アナログ センサーは 10 秒ごとに温室データを収集します。
- if(mTimer == null ){
- mTimer = 新しいタイマー();
- }
- if(mTimerTask== null ){
- mTimerTask = 新しいTimerTask() {
- @オーバーライド
- パブリックボイド実行(){
- データを更新します。
- }
- };
- }
- mTimer.schedule(mTimerTask,0,1000*10);
- }
- プライベートvoid updateData() {
- // 0~100 のランダムな温度を取得します。
- ダブル temp = 新しい Random().nextDouble()*100;
- // 0~100 のランダムな湿度を取得します。
- ダブルhumi = 新しい Random().nextDouble()*100;
- //ランダムなCO2濃度0~1000を取得
- ダブルco2 = 新しいRandom().nextDouble()*1000;
- 試す {
- // 収集したデータをキー値形式で分散データベースに保存します
- DataModle dataModle=new DataModle();
- データモジュール.setTemp( temp );
- データモデルを設定します。
- データモデルをco2に設定します。
- 文字列 jsonString= ZSONObject.toZSONString(dataModle);
- 単一のKvStore.putString( "データ" 、jsonString);
- } キャッチ (KvStoreException e) {
- LogUtils.debug(TAG、 「DataServiceAbility::updateData()」 +e.getMessage());
- }
- }
- プライベートvoid createForeService() {
- // 通知を作成します。1005 は notificationId です
- リクエスト = 新しい NotificationRequest(1005);
- NotificationRequest.NotificationNormalContent コンテンツ = 新しい NotificationRequest.NotificationNormalContent();
- content.setTitle( "農業用温室" ).setText( "データ収集サービスが有効になっています" );
- NotificationRequest.NotificationContent notificationContent = 新しい NotificationRequest.NotificationContent(content);
- リクエスト.setContent(通知コンテンツ);
- //通知をバインドします。1005 は通知を作成するときに渡される notificationId です。
- バックグラウンド実行を維持(1005、リクエスト);
- }
- @オーバーライド
- パブリックvoid onBackground() {
- スーパーのonBackground();
- LogUtils.debug(TAG, "DataServiceAbility::onBackground()" );
- }
-
- @オーバーライド
- パブリックボイドonStop() {
- スーパーのonStop();
- mTimerTask != null の場合{
- タイマータスクをキャンセルします。
- mTimerTask = null ;
- } の場合 (mTimer != null ) {
- タイマーをキャンセルします。
- mTimer = null ;
- }
- //フォアグラウンド サービスを停止します。
- バックグラウンド実行をキャンセルします。
- LogUtils.debug(TAG, "DataServiceAbility::onStop()" );
- }
-
- @オーバーライド
- パブリックvoid onCommand(インテント インテント、ブール値 再起動、 int開始 ID) {
- }
- @オーバーライド
- パブリックIRemoteObject onConnect(インテントインテント) {
- 戻る ヌル;
- }
- @オーバーライド
- パブリックvoid onDisconnect(インテント インテント) {
- }
- }
3.DBユーティリティ - パブリッククラスDBUtils {
- プライベート静的KvManager kvManager;
- プライベート静的SingleKvStore singleKvStore;
- 公共 静的文字列 KV_STORE_NAME = "farm_data" ;
- //データベース初期化の具体的な実装
- 公共 静的SingleKvStore initOrGetDB(コンテキストコンテキスト、文字列ストアID) {
- KvManagerConfig kvManagerConfig = 新しい KvManagerConfig(コンテキスト);
- kvManager = KvManagerFactory.getInstance().createKvManager(kvManagerConfig);
- オプション options = new Options();
- オプション.setCreateIfMissing( true )
- .setEncrypt( false )
- .setKvStoreType(KvStoreType.SINGLE_VERSION)
- .setAutoSync( false ); //自動同期はtrue 、手動同期はfalse
- singleKvStore = kvManager.getKvStore(オプション, ストアID);
- singleKvStoreを返します。
- }
- // データベース内のフィールドが変更された場合、変更を有効にするには閉じて削除し、再作成する必要があります。
- 公共 静的void clearDB() {
- kvManager.closeKvStore(単一のKvStore);
- kvManager.deleteKvStore(KV_STORE_NAME);
- }
- }
4. メインアビリティ - @オーバーライド
- パブリックvoid onStart(インテント インテント) {
- super.onStart(インテント);
- super.setMainRoute(PhoneAbilitySlice.class.getName());
- // Abilityを実装するコードは、マルチデバイス共同アクセス権限を使用する必要があることを明示的に宣言します
- requestPermissionsFromUser(新しい文字列[]{ "ohos.permission.DISTRIBUTED_DATASYNC" ,}, 0);
- }
5. データモデル - パブリッククラスDataModel {
- プライベートダブル 温度;
- プライベートダブルヒュミ;
- プライベートダブルCO2;
- 公共 ダブルgetTemp() {
- 戻る 温度;
- }
- パブリックボイドsetTemp( double 温度){
- this.temp = temp ;
- }
-
- 公共 ダブルgetHumi() {
- ヒュミを返す;
- }
- パブリックvoid setHumi( double humi) {
- humi は humi と等価です。
- }
- 公共 ダブルgetCo2() {
- CO2を返す。
- }
- パブリックボイドsetCo2(ダブルco2){
- .co2 = co2; となります。
- }
- }
6. デバイスデータ - パブリッククラスDeviceData {
- プライベートブール値 isChecked;
- プライベートデバイス情報デバイス情報;
- /**
- * デバイスデータ
- *
- * @param isChecked isChecked
- * @param デバイス情報 デバイス情報
- */
- パブリックデバイスデータ(ブール値isChecked、デバイス情報デバイス情報) {
- this.isChecked = isChecked;
- this.deviceInfo = デバイス情報;
- }
- パブリックデバイス情報 getDeviceInfo() {
- デバイス情報を返します。
- }
- パブリックvoid setDeviceInfo(デバイス情報デバイス情報) {
- this.deviceInfo = デバイス情報;
- }
- パブリックブール値isChecked() {
- isChecked を返します。
- }
- パブリックvoid setChecked(boolean チェック済み) {
- isChecked = チェック済み;
- }
- }
7. デバイスプロバイダー - パブリッククラスDevicesProviderはBaseItemProviderを拡張します{
-
- プライベートList<DeviceData>データ;
- プライベート LayoutScatter layoutScatter;
-
- パブリックDevicesProvider(コンテキスト コンテキスト、List<DeviceData> データ) {
- this.data = データ;
- コンテキストに応じて、レイアウト オブジェクトのインスタンスを作成します。
- }
-
- @オーバーライド
- 公共 整数getCount() {
- data.size ()を返します。
- }
-
- @オーバーライド
- パブリックオブジェクトgetItem( int i) {
- data.get(i)を返します。
- }
-
- @オーバーライド
- パブリックlong getItemId( int i) {
- iを返します。
- }
-
- @オーバーライド
- public Component getComponent( int位置、 Component コンポーネント、
- コンポーネントコンテナコンポーネントコンテナ) {
- ビューホルダー ビューホルダー;
- // コンポーネントは Android のビューに相当し、残りは Android の ListView のアダプターに似ています。
- // 名前はあまり変わりませんが、Android では ListView は基本的に廃止されています。
- コンポーネントがnullの場合
- コンポーネント = layoutScatter.parse(ResourceTable.Layout_dialog_device_item, null 、 false );
- ビューホルダー = 新しいビューホルダー();
- viewHolder.imgType = (イメージ) component.findComponentById(ResourceTable.Id_item_type);
- viewHolder.tvName = (テキスト) component.findComponentById(ResourceTable.Id_item_name);
- viewHolder.imgCheck = (イメージ) component.findComponentById(ResourceTable.Id_item_check);
- コンポーネントのタグを設定します(viewHolder);
- }それ以外{
- viewHolder = (ViewHolder) コンポーネント.getTag();
- }
- デバイスデータ デバイスデータ = data.get(位置);
- デバイスタイプ deviceType=deviceData.getDeviceInfo().getDeviceType();
- スイッチ (デバイスタイプ) {
- SMART_WATCHの場合:
- viewHolder.imgType.setPixelMap(ResourceTable.Media_dv_watch);
- 壊す;
- SMART_PADの場合:
- viewHolder.imgType.setPixelMap(ResourceTable.Media_dv_pad);
- 壊す;
- ケースSMART_PHONE:
- viewHolder.imgType.setPixelMap(ResourceTable.Media_dv_phone);
- 壊す;
- }
- viewHolder.tvName.setText(デバイスデータ.getDeviceInfo().getDeviceName());
- デバイスデータをチェックしている場合
- viewHolder.imgCheck.setImageAndDecodeBounds(ResourceTable.Media_check2); }そうでない場合は、viewHolder.imgCheck.setImageAndDecodeBounds(ResourceTable.Media_uncheck2);
- }
- コンポーネントを返します。
- }
-
- /**
- * Android の listView キャッシュに似ています。画面に表示されたアイテムをViewHolderにキャッシュし、次回表示されたときにキャッシュから直接読み取る
- */
- プライベート静的クラス ViewHolder {
- プライベートイメージimgType;
- プライベートテキストtvName;
- プライベートイメージimgCheck;
- }
- }
8. 顧客ダイアログ - パブリッククラスCustomerDialog{
- 公共 静的void showToastDialog(コンテキスト context, 文字列 str) {
- DirectionalLayout toastLayout = (DirectionalLayout) LayoutScatter.getInstance(コンテキスト)
- .parse(ResourceTable.Layout_toast_dialog, null 、 false );
- テキスト text = (テキスト) toastLayout.findComponentById(ResourceTable.Id_toast);
- テキストをセットします。
- 新しい ToastDialog(コンテキスト)
- .setContentCustomComponent(トーストレイアウト)
- .setSize(DirectionalLayout.LayoutConfig.MATCH_CONTENT,
- DirectionalLayout.LayoutConfig.MATCH_CONTENT)
- .setAlignment(レイアウト配置.CENTER)
- 。見せる();
- }
- }
9. マイアプリケーション - @オーバーライド
- パブリックvoid onInitialize() {
- スーパーのonInitialize();
- }
- }
10. config.json ファイル - "アプリ" : {
- "バンドル名" : " com.isoftstone.distributeddata " ,
- 「ベンダー」 : 「isoftstone」 、
- 「バージョン」 : {
- 「コード」 : 1000000,
- "名前" : "1.0.0"
- }
- },
- "デバイス構成" : {},
- 「モジュール」 : {
- 「パッケージ」 : 「com.isoftstone.distributeddata」 、
- 「名前」 : 「.MyApplication」 、
- 「メインアビリティ」 : 「com.isoftstone.distributeddata.メインアビリティ」 、
- "デバイスタイプ" : [
- "電話"
- ]、
- 「ディストリビューション」 : {
- "インストール時に配信" : true 、
- "モジュール名" : "エントリ" ,
- "モジュールタイプ" : "エントリ" ,
- "インストール無料" : false
- },
- 「必要な権限」 : [
- {
- 「名前」 : 「ohos.permission.DISTRIBUTED_DATASYNC」
- },
- {
- 分散オンラインデバイスを見つけるには、この権限を追加します
- 「名前」 : 「ohos.permission.GET_DISTRIBUTED_DEVICE_INFO」
- },
- {
- サービスをフォアグラウンドサービスとして設定するには、権限を追加する必要があります
- "名前" : "ohos.permission.KEEP_BACKGROUND_RUNNING"
- }
- ]、
- 「能力」 : [
- {
- 「スキル」 : [
- {
- 「エンティティ」 : [
- 「エンティティ.システム.ホーム」
- ]、
- 「アクション」 : [
- 「アクション.システム.ホーム」
- ]
- }
- ]、
- 「方向」 : 「未指定」 、
- 「名前」 : 「com.isoftstone.distributeddata.MainAbility」 、
- "アイコン" : "$media:icon" ,
- "説明" : "$string:mainability_description" ,
- "ラベル" : "$string:entry_MainAbility" ,
- 「タイプ」 : 「ページ」 、
- 「起動タイプ」 : 「標準」
- },
- {
- 「名前」 : 「com.isoftstone.distributeddata.DataServiceAbility」 、
- "アイコン" : "$media:icon" ,
- 「説明」 : 「$string:dataserviceability_description」 、
- 「タイプ」 : 「サービス」 、
- 「表示」 : true 、
- 「背景モード」 : [
- 「データ転送」 、
- "位置"
- ]
- }
-
- ]、
- 「メタデータ」 : {
- 「カスタマイズデータ」 : [
- {
- 「名前」 : 「hwc-テーマ」 、
- 「値」 : 「androidhwext:style/Theme.Emui.NoTitleBar」 、
- "余分な" : ""
- }
- ]
- }
- }
11.ability_main.xmlレイアウトファイル - <?xml バージョン = "1.0"エンコーディング = "utf-8" ?>
- <方向レイアウト
- xmlns:ohos= "http://schemas.huawei.com/res/ohos"
- ohos:height= "match_parent"
- ohos:width= "match_parent"
- ohos:orientation= "垂直" >
-
- <依存レイアウト
- ohos:width= "match_parent"
- ohos:height= "match_content"
- ohos:orientation= "水平"
- ohos:top_padding= "50vp"
- ohos:bottom_padding= "20vp"
- ohos:left_padding= "20vp"
- ohos:right_padding= "20vp"
- ohos:background_element= "$graphic:background_ability_main" >
- <テキスト
- ohos:width= "match_content"
- ohos:height= "match_content"
- ohos:text= "農業温室データ監視"
- ohos:text_size= "26vp"
- ohos:text_color= "#ffffff"
- ohos:center_in_parent= "true" />
- <ボタン
- ohos:id= "$+id:bt_continue"
- ohos:width= "25vp"
- ohos:height= "25vp"
- ohos:background_element= "$media:conti"
- ohos:align_parent_right= "true"
- ohos:vertical_center= "true" />
- </依存レイアウト>
- <依存レイアウト
- ohos:height= "match_content"
- ohos:width= "match_parent"
- ohos:background_element= "#f4f5f7"
- ohos:left_padding= "15vp"
- ohos:right_padding= "15vp"
- ohos:top_padding= "10vp"
- ohos:bottom_padding= "10vp" >
-
- <テキスト
- ohos:height= "match_content"
- ohos:width= "match_content"
- ohos:text= "温度:"
- ohos:text_color= "#000000"
- ohos:text_size= "18fp"
- ohos:vertical_center= "true" />
-
- <テキスト
- ohos:id= "$+id:text_temp"
- ohos:height= "match_content"
- ohos:width= "match_content"
- ohos:text= "データを収集中です"
- ohos:text_color= "#00ff00"
- ohos:text_size= "18fp"
- ohos:left_margin= "50vp"
- ohos:vertical_center = "true" />
- </依存レイアウト>
-
- <コンポーネント
- ohos:height= "2vp"
- ohos:width= "match_content"
- ohos:background_element= "#FFFFFF" />
-
- <依存レイアウト
- ohos:height= "match_content"
- ohos:width= "match_parent"
- ohos:background_element= "#f4f5f7"
- ohos:left_padding= "15vp"
- ohos:right_padding= "15vp"
- ohos:top_padding= "10vp"
- ohos:bottom_padding= "10vp" >
-
- <テキスト
- ohos:height= "match_content"
- ohos:width= "match_content"
- ohos:text= "湿度:"
- ohos:text_color= "#000000"
- ohos:text_size= "18fp"
- ohos:vertical_center= "true" />
-
- <テキスト
- ohos:id= "$+id:text_humi"
- ohos:height= "match_content"
- ohos:width= "match_content"
- ohos:text= "データを収集中です"
- ohos:text_color= "#00ff00"
- ohos:text_size= "18fp"
- ohos:left_margin= "50vp"
- ohos:vertical_center = "true" />
- </依存レイアウト>
-
- <コンポーネント
- ohos:height= "2vp"
- ohos:width= "match_content"
- ohos:background_element= "#FFFFFF" />
-
- <依存レイアウト
- ohos:height= "match_content"
- ohos:width= "match_parent"
- ohos:background_element= "#f4f5f7"
- ohos:left_padding= "15vp"
- ohos:right_padding= "15vp"
- ohos:top_padding= "10vp"
- ohos:bottom_padding= "10vp" >
-
- <テキスト
- ohos:height= "match_content"
- ohos:width= "match_content"
- ohos:text= "CO2:"
- ohos:text_color= "#000000"
- ohos:text_size= "18fp"
- ohos:vertical_center= "true" />
-
- <テキスト
- ohos:id= "$+id:text_co2"
- ohos:height= "match_content"
- ohos:width= "match_content"
- ohos:text= "データを収集中です"
- ohos:text_color= "#00ff00"
- ohos:text_size= "18fp"
- ohos:left_margin= "50vp"
- ohos:vertical_center= "true" />
- </依存レイアウト>
-
-
- </方向レイアウト>
12. ダイアログデバイスアイテム.xml - <?xml バージョン = "1.0"エンコーディング = "utf-8" ?>
- <方向レイアウト
- xmlns:ohos= "http://schemas.huawei.com/res/ohos"
- ohos:height= "70vp"
- ohos:width= "match_parent"
- ohos:orientation= "水平" >
-
- <画像
- ohos:id= "$+id:item_type"
- ohos:height= "45vp"
- ohos:width= "50vp"
- ohos:image_src= "$media:dv_phone"
- ohos:layout_alignment= "垂直中央"
- ohos:left_margin= "10vp"
- ohos:scale_mode= "内側" />
-
- <テキスト
- ohos:id= "$+id:item_name"
- ohos:height= "match_parent"
- ohos:width= "0vp"
- ohos:最大テキスト行数= "1"
- ohos:text= "Huawei P40"
- ohos:text_alignment= "垂直中央"
- ohos:text_size= "15fp"
- ohos:weight= "1" />
-
- <画像
- ohos:id= "$+id:item_check"
- ohos:height= "30vp"
- ohos:width= "30vp"
- ohos:image_src= "$media:uncheck2"
- <方向レイアウト
- xmlns:ohos= "http://schemas.huawei.com/res/ohos"
- ohos:height= "340vp"
- ohos:width= "match_parent"
- ohos:orientation= "垂直" >
-
- <方向レイアウト
- ohos:height= "match_parent"
- ohos:width= "match_parent"
- ohos:background_element= "$graphic:background_white_radius_10"
- ohos:bottom_margin= "50vp"
- ohos:left_margin= "20vp"
- ohos:orientation= "垂直"
- ohos:right_margin= "20vp" >
-
- <テキスト
- ohos:height= "50vp"
- ohos:width= "match_parent"
- ohos:left_padding= "20vp"
- ohos:text= "別のデバイスに移行する"
- ohos:text_alignment= "垂直中央"
- ohos:text_color= "#000000"
- ohos:text_size= "16fp" />
-
- <リストコンテナ
- ohos:id= "$+id:list_container_device"
- ohos:height= "0vp"
- ohos:width= "match_parent"
- ohos:weight= "1" />
-
- <方向レイアウト
- ohos:height= "50vp"
- ohos:width= "match_parent"
- ohos:orientation= "水平" >
-
- <テキスト
- ohos:id= "$+id:operate_no"
- ohos:height= "match_parent"
- ohos:width= "0vp"
- ohos:text= "キャンセル"
- ohos:text_alignment= "中央"
- ohos:text_color= "#1e90ff"
- ohos:text_size= "17fp"
- ohos:weight= "1" />
-
- <コンポーネント
- ohos:height= "25vp"
- ohos:width= "1vp"
- ohos:background_element= "#cccccc"
- ohos:layout_alignment= "垂直中央" />
-
- <テキスト
- ohos:id= "$+id:operate_yes"
- ohos:height= "match_parent"
- ohos:width= "0vp"
- ohos:text= "OK"
- ohos:text_alignment= "中央"
- ohos:text_color= "#1e90ff"
- ohos:text_size= "17fp"
- ohos:weight= "1" />
- </方向レイアウト>
- </方向レイアウト>
- </方向レイアウト>
14. トーストダイアログ.xml - <方向レイアウト
- xmlns:ohos= "http://schemas.huawei.com/res/ohos"
- ohos:height= "match_content"
- ohos:width= "match_content"
- ohos:orientation= "垂直"
- ohos:background_element= "$graphic:background_gray_circle" >
- <テキスト
- ohos:id= "$+id:toast"
- ohos:height= "match_content"
- ohos:width= "match_content"
- ohos:left_padding= "16vp"
- ohos:right_padding= "16vp"
- ohos:top_padding= "4vp"
- ohos:bottom_padding= "4vp"
- ohos:layout_alignment= "中央"
- ohos:text_size= "20fp" />
- </方向レイアウト>
テレビ1. TVAbilitySlice - プライベートテキストtvTemp;
- プライベートテキストtvTempMax;
- プライベートテキストtvTempMin;
-
- プライベートテキストtvHumi;
- プライベートテキストtvHumiMax;
- プライベートテキストtvHumiMin;
-
- プライベートテキストtvCgas;
- プライベートテキストtvCgasMax;
- プライベートテキストtvCgasMin;
-
- プライベートテキストtvTempStatus;
- プライベートテキストtvHumiStatus;
- プライベートテキストtvCgasStatus;
-
-
- プライベート ProgressBar rgbTem;
- プライベート ProgressBar rgbHumi;
- プライベート ProgressBar rgbCgas;
-
- プライベート静的最終 HiLogLabel ラベル = 新しい HiLogLabel(HiLog.LOG_APP、0x0001、 "my_log" );
-
- プライベートダブル 温度;
- プライベートダブルヒュミ;
- プライベートダブルcGas;
- プライベート SingleKvStore シングルKvストア;
- プライベート KvStoreObserverClient kvStoreObserverClient;
-
- @オーバーライド
- パブリックvoid onStart(インテント インテント) {
- super.onStart(インテント);
- UIContent をスーパーに設定します。
- //没入型ステータスバーを設定する
- getWindow().addFlags(WindowManager.LayoutConfig.MARK_TRANSLUCENT_STATUS);
-
- tvTemp = (テキスト) findComponentById(ResourceTable.Id_tvTemp);
- tvTempMax = (テキスト) findComponentById(ResourceTable.Id_tvMaxTemp);
- tvTempMin = (テキスト) findComponentById(ResourceTable.Id_tvMinTemp);
- rgbTem = (RoundProgressBar) リソーステーブルId_rgb_temでコンポーネントIDを検索します。
-
- tvHumi = (テキスト) findComponentById(ResourceTable.Id_tvHumi);
- tvHumiMax = (テキスト) findComponentById(ResourceTable.Id_tvMaxHumi);
- tvHumiMin = (テキスト) findComponentById(ResourceTable.Id_tvMinHumi);
- rgbHumi = (RoundProgressBar) findComponentById(ResourceTable.Id_rgb_humi);
-
- tvCgas = (テキスト) findComponentById(ResourceTable.Id_tvCgas);
- tvCgasMax = (テキスト) findComponentById(ResourceTable.Id_tvMaxCgas);
- tvCgasMin = (テキスト) findComponentById(ResourceTable.Id_tvMinCgas);
- rgbCgas = (RoundProgressBar) findComponentById(ResourceTable.Id_rgb_gas);
-
- tvTempStatus = (テキスト) findComponentById(ResourceTable.Id_tvTempStatus);
- tvHumiStatus = (テキスト) findComponentById(ResourceTable.Id_tvHumiStatus);
- tvCgasStatus = (テキスト) findComponentById(ResourceTable.Id_tvCgasStatus);
-
- 試す {
- KvManagerConfig 設定 = 新しい KvManagerConfig(getContext());
- KvManager kvManager = KvManagerFactory.getInstance().createKvManager(config);
- オプションCREATE = new Options();
- CREATE .setCreateIfMissing( true ).setEncrypt( false )
- .setKvStoreType(KvStoreType.SINGLE_VERSION)
- .setAutoSync( true );
- 単一の KvStore を kvManager.getKvStore( CREATE , DBUtils.KV_STORE_NAME );
- kvStoreObserverClient = 新しい KvStoreObserverClient();
- 単一の KvStore.subscribe(SubscribeType.SUBSCRIBE_TYPE_ALL、kvStoreObserverClient);
- } キャッチ (例外 e) {
- e.printStackTrace();
- }
-
- }
-
- プライベートクラスKvStoreObserverClientはKvStoreObserverを実装します{
-
- @オーバーライド
- パブリックvoid onChange(ChangeNotification通知) {
- //onChangeメソッドは実際には子スレッドで実行されます
- getUITaskDispatcher().asyncDispatch(() -> {
- //ここでページUIコンポーネントの表示更新を実行します
- 非同期更新データ();
- });
- }
- }
-
-
- パブリックvoid asyncUpdateData(){
- //分散データのデータを照会する
- リスト<Entry> エントリ = singleKvStore.getEntries( "data" );
- エントリサイズ() > 0の場合{
- ZSONObject zsonObject = ZSONObject.stringToZSON(entries.get(0).getValue().getString());
- ダブル temp = zsonObject.getDouble( "temp" );
- ダブルhumi = zsonObject.getDouble( "humi" );
- ダブルco2 = zsonObject.getDouble( "co2" );
- 文字列 strTemp = String.format( "%.1f" , temp );
- 文字列 strHumi = String.format( "%.1f" , humi);
- 文字列 strCO2 = String.format( "%.1f" , co2);
- 温度、湿度、CO2 を初期化します。
-
- }
- }
-
- プライベート void initView(文字列 strTemp、文字列 strHumi、文字列 strCO2) {
- temp = Double .valueOf(strTemp);
- 最大温度 = 45;
- 整数tempMin = -10;
-
- humi =ダブル.valueOf(strHumi);
- 湿度最大値 = 70;
- 湿度最小値 = 10;
-
- cGas = Double .valueOf(strCO2);
- 整数cGasMax = 1000;
-
- (温度>-100)の場合
- (温度>温度最大値 ||温度<温度最小値){
- tvTemp.setTextColor(Color.RED);
- tvTempStatus.setText( "例外" );
- tvTempStatus.setTextColor(Color.RED);
- rgbTem.setProgressColor(Color.RED);
- }それ以外{
- tvTemp.setTextColor(Color.GREEN);
- tvTempStatus.setText( "通常" );
- tvTempStatus.setTextColor(Color.GREEN);
- rgbTem.setProgressColor(Color.GREEN);
-
- }
- }それ以外{
- tvTemp.setTextColor(Color.BLACK);
- tvTempStatus.setTextColor(Color.BLACK);
- tvTempStatus.setText( "不明" );
- rgbTem.setProgressColor(Color.GREEN);
-
- }
- tvTempMax.setText(tempMax + "℃" );
- tvTempMin.setText(tempMin + "℃" );
-
- (湿度>-100)の場合{
- if (humi > humiMax || humi < humiMin) {
- tvHumi.setTextColor(Color.RED);
- tvHumiStatus.setText( "異常" );
- tvHumiStatus.setTextColor(Color.RED);
- rgbHumi.setProgressColor(Color.RED);
- }それ以外{
- tvHumi.setTextColor(Color.GREEN);
- tvHumiStatus.setText( "正常" );
- tvHumiStatus.setTextColor(Color.GREEN);
- rgbHumi.setProgressColor(Color.GREEN);
- }
- }それ以外{
- tvHumi.setTextColor(Color.BLACK);
- tvHumiStatus.setText( "不明" );
- tvHumiStatus.setTextColor(Color.BLACK);
- rgbHumi.setProgressColor(Color.GREEN);
-
- }
- tvHumiMax.setText(humiMax + "% RH" );
- tvHumiMin.setText(humiMin + "% RH" );
-
- cGas > -100 の場合 {
- cGas > cGasMaxの場合{
- tvCgas.setTextColor(Color.RED);
- tvCgasStatus.setText( "異常" );
- tvCgasStatus.setTextColor(Color.RED);
- rgbCgas.setProgressColor(Color.RED);
- }それ以外{
- tvCgas.setTextColor(Color.GREEN);
- tvCgasStatus.setText( "通常" );
- tvCgasStatus.setTextColor(Color.GREEN);
- }
- }それ以外{
- tvCgas.setTextColor(Color.BLACK);
- tvcgasstatus.settext( "不明" );
- tvcgasstatus.settextcolor(color.black);
- rgbcgas.setprogresscolor(color.green);
-
- }
-
- tvcgasmax.settext(cgasmax + "ppm" );
-
- tvcgasmin.settext(0 + "ppm" );
-
- if( temp <= -100){
- tvtemp.settext( "不明" );
- rgbtem.setProgressValue(0);
- }それ以外{
- tvtemp.settext( temp + "℃" );
- rgbtem.setProgressValue((( int ) temp );
- }
- if(humi <= -100){
- tvhumi.settext( "不明" );
- rgbhumi.setProgressValue(0);
- }それ以外{
- tvhumi.settext(humi + "%rh" );
- rgbhumi.setProgressValue(( int )humi);
- }
- if(cgas <= -100){
- tvcgas.settext( "不明" );
- rgbcgas.setProgressValue(0);
- }それ以外{
- tvcgas.settext(cgas + "ppm" );
- rgbcgas.setProgressValue((( int )cgas);
- }
-
- }
-
-
- @オーバーライド
- onstop()で保護されたvoid {
- super.onstop();
- //サブスクライブを解除します
- // if(singlekvstore!= null ){
- // if(kvstoreobserverclient!= null ){
- // singlekvstore.unsubscribe(kvstoreobserverclient);
- // }
- // }
- }
- }
2。テレビ性 - パブリッククラスのテレビ性は能力を拡張します{
-
- @オーバーライド
- on -start(意図の意図){
- super.onstart(意図);
- super.setmainroute(tvabilityslice.class.getName());
- //能力を実装するコードは、マルチデバイスコラボレーションアクセス許可を使用する必要性を明示的に宣言します
- RequestPermissionsFromUser(new String [] { "ohos.permiss.distributed_datasync" 、}、0);
- }
- }
3。ability_tv.xml - <?xmlバージョン= "1.0" encoding = "utf-8" ?>
- <DirectionAllayout
- xmlns:ohos = "http://schemas.huawei.com/res/ohos"
- ohos:height = "match_parent"
- ohos:width = "match_parent"
- OHOS:Orientation = "Vertical"
- ohos:background_element = "$ media:haibao" >
-
- <テキスト
- ohos:height = "match_content"
- ohos:width = "match_content"
- OHOS:Text = "温室データ監視"
- ohos:text_color = "#ffffff"
- ohos:text_size = "26vp"
- ohos:layout_alignment = "center"
- Ohos:top_margin = "50vp" />
-
- <DepenentLayout
- ohos:height = "match_parent"
- ohos:width = "match_parent" >
-
- <DirectionAllayout
- ohos:height = "match_content"
- ohos:width = "match_parent"
- ohos:left_padding = "10vp"
- ohos:right_padding = "10vp"
- ohos:center_in_parent = "true"
- Ohos:Orientation = "Horizontal" >
- <DirectionAllayout
- ohos:height = "match_content"
- ohos:width = "0"
- ohos:weight = "1"
- ohos:layout_alignment = "center"
- Ohos:Orientation = "Vertical" >
- <テキスト
- ohos:height = "match_content"
- ohos:width = "match_content"
- ohos:text = "温度データ"
- ohos:text_size = "20vp"
- Ohos:パディング= "5vp"
- ohos:text_color = "#ffffff"
- ohos:layout_alignment = "center" />
- <DirectionAllayout
- ohos:height = "3VP"
- ohos:width = "match_parent"
- ohos:background_element = "#ffffff"
- ohos:top_margin = "15vp"
- ohos:left_margin = "20vp"
- ohos:right_margin = "20vp"
- ohos:layout_alignment = "center"
- ohos:bottom_margin = "15vp"
- ohos:visibility = "Invisible" />
- <DirectionAllayout
- ohos:height = "match_content"
- ohos:width = "match_content"
- ohos:layout_alignment = "center"
- Ohos:Orientation = "Horizontal" >
- <DirectionAllayout
- ohos:height = "match_parent"
- ohos:width = "match_content"
- Ohos:Orientation = "Vertical" >
- <テキスト
- ohos:height = "0"
- ohos:width = "match_content"
- Ohos:Text = "最高温度のしきい値:"
- ohos:text_size = "16vp"
- ohos:weight = "1"
- ohos:text_color = "#000000" />
- <テキスト
- ohos:height = "0"
- ohos:width = "match_content"
- Ohos:Text = "現在の温度:"
- ohos:text_size = "16vp"
- ohos:weight = "1"
- ohos:text_color = "#000000" />
- <テキスト
- ohos:height = "0"
- ohos:width = "match_content"
- Ohos:Text = "最低温度しきい値:"
- ohos:text_size = "16vp"
- ohos:weight = "1"
- ohos:text_color = "#000000" />
- </directionallayout>
-
- <DepenentLayout
- Ohos:height = "100VP"
- ohos:width = "100vp" >
- <roundprogressbar
- ohos:id = "$+id:rgb_tem"
- ohos:height = "match_parent"
- ohos:width = "match_parent"
- ohos:progress_width = "10vp"
- Ohos:Progress = "0"
- Ohos: max = "100"
- ohos:start_angle = "215"
- ohos:max_angle = "290"
- ohos:progress_color = "#00ff00"
- ohos:center_in_parent = "true" />
- <テキスト
- ohos:id = "$+id:tvmaxtemp"
- ohos:height = "match_content"
- ohos:width = "match_content"
- ohos:text_size = "15vp"
- ohos:text_color = "#000000"
- ohos:align_parent_top = "true"
- ohos:text = "不明"
- ohos:top_margin = "8vp"
- ohos:horizontal_center = "true" />
- <テキスト
- ohos:id = "$+id:tvtemp"
- ohos:height = "match_content"
- ohos:width = "match_content"
- ohos:text_size = "15vp"
- ohos:text_color = "#000000"
- ohos:text = "不明"
- ohos:center_in_parent = "true" />
- <テキスト
- ohos:id = "$+id:tvmintemp"
- ohos:height = "match_content"
- ohos:width = "match_content"
- ohos:text_size = "14vp"
- ohos:text_color = "#000000"
- ohos:text = "不明"
- ohos:bottom_margin = "8vp"
- ohos:align_parent_bottom = "true"
- ohos:horizontal_center = "true" />
- </DepenentLayout>
-
- </directionallayout>
-
-
- <DirectionAllayout
- ohos:height = "3VP"
- ohos:width = "match_parent"
- ohos:background_element = "#ffffff"
- ohos:top_margin = "15vp"
- ohos:left_margin = "20vp"
- ohos:right_margin = "20vp"
- ohos:layout_alignment = "center"
- ohos:bottom_margin = "15vp"
- ohos:visibility = "Invisible" />
- <DirectionAllayout
- ohos:height = "match_content"
- ohos:width = "match_content"
- ohos:layout_alignment = "center"
- Ohos:Orientation = "Horizontal" >
- <テキスト
- ohos:height = "match_content"
- ohos:width = "match_content"
- Ohos:Text = "温度状態:"
- ohos:text_size = "18vp"
- ohos:text_color = "#000000" />
- <テキスト
- ohos:id = "$+id:tvtempstatus"
- ohos:height = "match_content"
- ohos:width = "match_content"
- ohos:text = "不明"
- ohos:text_size = "18vp"
- ohos:text_color = "#000000" />
- </directionallayout>
- </directionallayout>
-
-
- <DirectionAllayout
- Ohos:height = "90vp"
- ohos:width = "1vp"
- ohos:background_element = "#000000"
- ohos:top_margin = "6vp"
- ohos:layout_alignment = "center" />
-
- <DirectionAllayout
- ohos:height = "match_content"
- ohos:width = "0"
- ohos:weight = "1"
- ohos:layout_alignment = "center"
- Ohos:Orientation = "Vertical" >
- <テキスト
- ohos:height = "match_content"
- ohos:width = "match_content"
- Ohos:Text = "湿度データ"
- ohos:text_size = "20vp"
- Ohos:パディング= "5vp"
- ohos:text_color = "#ffffff"
- ohos:layout_alignment = "center" />
- <DirectionAllayout
- ohos:height = "3VP"
- ohos:width = "match_parent"
- ohos:background_element = "#ffffff"
- ohos:top_margin = "15vp"
- ohos:left_margin = "20vp"
- ohos:right_margin = "20vp"
- ohos:layout_alignment = "center"
- ohos:bottom_margin = "15vp"
- ohos:visibility = "Invisible" />
-
-
- <DirectionAllayout
- ohos:height = "match_content"
- ohos:width = "match_content"
- ohos:layout_alignment = "center"
- Ohos:Orientation = "Horizontal" >
- <DirectionAllayout
- ohos:height = "match_parent"
- ohos:width = "match_content"
- Ohos:Orientation = "Vertical" >
- <テキスト
- ohos:height = "0"
- ohos:width = "match_content"
- Ohos:Text = "最大湿度のしきい値:"
- ohos:text_size = "16vp"
- ohos:weight = "1"
- ohos:text_color = "#000000" />
- <テキスト
- ohos:height = "0"
- ohos:width = "match_content"
- Ohos:Text = "現在の湿度:"
- ohos:text_size = "16vp"
- ohos:weight = "1"
- ohos:text_color = "#000000" />
- <テキスト
- ohos:height = "0"
- ohos:width = "match_content"
- Ohos:Text = "最小湿度のしきい値:"
- ohos:text_size = "16vp"
- ohos:weight = "1"
- ohos:text_color = "#000000" />
- </directionallayout>
-
- <DepenentLayout
- Ohos:height = "100VP"
- ohos:width = "100vp" >
- <roundprogressbar
- Ohos:id = "$+id:rgb_humi"
- ohos:height = "match_parent"
- ohos:width = "match_parent"
- ohos:progress_width = "10vp"
- Ohos:Progress = "0"
- Ohos: max = "100"
- ohos:start_angle = "215"
- ohos:max_angle = "290"
- ohos:progress_color = "#00ff00"
- ohos:center_in_parent = "true" />
- <テキスト
- ohos:id = "$+id:tvmaxhumi"
- ohos:height = "match_content"
- ohos:width = "match_content"
- ohos:text_size = "15vp"
- ohos:text_color = "#000000"
- ohos:text = "不明"
- ohos:top_margin = "8vp"
- ohos:horizontal_center = "true"
- ohos:align_parent_top = "true" />
- <テキスト
- ohos:id = "$+id:tvhumi"
- ohos:height = "match_content"
- ohos:width = "match_content"
- ohos:text_size = "15vp"
- ohos:text_color = "#000000"
- ohos:text = "不明"
- ohos:center_in_parent = "true" />
- <テキスト
- ohos:id = "$+id:tvminhumi"
- ohos:height = "match_content"
- ohos:width = "match_content"
- ohos:text_size = "15vp"
- ohos:text_color = "#000000"
- ohos:horizontal_center = "true"
- ohos:text = "不明"
- ohos:bottom_margin = "8vp"
- ohos:align_parent_bottom = "true" />
- </DepenentLayout>
-
- </directionallayout>
-
- <DirectionAllayout
- ohos:height = "3VP"
- ohos:width = "match_parent"
- ohos:background_element = "#ffffff"
- ohos:top_margin = "15vp"
- ohos:left_margin = "20vp"
- ohos:right_margin = "20vp"
- ohos:layout_alignment = "center"
- ohos:bottom_margin = "15vp"
- ohos:visibility = "Invisible" />
- <DirectionAllayout
- ohos:height = "match_content"
- ohos:width = "match_content"
- ohos:layout_alignment = "center"
- Ohos:Orientation = "Horizontal" >
- <テキスト
- ohos:height = "match_content"
- ohos:width = "match_content"
- Ohos:Text = "湿度状態:"
- ohos:text_size = "18vp"
- ohos:text_color = "#000000" />
- <テキスト
- ohos:id = "$+id:tvhumistatus"
- ohos:height = "match_content"
- ohos:width = "match_content"
- ohos:text = "不明"
- ohos:text_size = "18vp"
- ohos:text_color = "#000000" />
- </directionallayout>
-
- </directionallayout>
-
-
-
- <DirectionAllayout
- Ohos:height = "90vp"
- ohos:width = "1vp"
- ohos:background_element = "#000000"
- ohos:top_margin = "6vp"
- ohos:layout_alignment = "center" />
-
-
-
-
- <DirectionAllayout
- ohos:height = "match_content"
- ohos:width = "0"
- ohos:weight = "1"
- ohos:layout_alignment = "center"
- Ohos:Orientation = "Vertical" >
- <テキスト
- ohos:height = "match_content"
- ohos:width = "match_content"
- OHOS:text = "CO2データ"
- ohos:text_size = "20vp"
- Ohos:パディング= "5vp"
- ohos:text_color = "#ffffff"
- ohos:layout_alignment = "center" />
- <DirectionAllayout
- ohos:height = "3VP"
- ohos:width = "match_parent"
- ohos:background_element = "#ffffff"
- ohos:top_margin = "15vp"
- ohos:left_margin = "20vp"
- ohos:right_margin = "20vp"
- ohos:layout_alignment = "center"
- ohos:bottom_margin = "15vp"
- ohos:visibility = "Invisible" />
- <DirectionAllayout
- ohos:height = "match_content"
- ohos:width = "match_content"
- ohos:layout_alignment = "center"
- Ohos:Orientation = "Horizontal" >
- <DirectionAllayout
- ohos:height = "match_parent"
- ohos:width = "match_content"
- Ohos:Orientation = "Vertical" >
- <テキスト
- ohos:height = "0"
- ohos:width = "match_content"
- Ohos:Text = "最大ガス増分:"
- ohos:text_size = "16vp"
- ohos:weight = "1"
- ohos:text_color = "#000000" />
- <テキスト
- ohos:height = "0"
- ohos:width = "match_content"
- Ohos:Text = "Current Increment:"
- ohos:text_size = "16vp"
- ohos:weight = "1"
- ohos:text_color = "#000000" />
- <テキスト
- ohos:height = "0"
- ohos:width = "match_content"
- Ohos:Text = "最小ガス増分:"
- ohos:text_size = "16vp"
- ohos:weight = "1"
- ohos:text_color = "#000000" />
- </directionallayout>
-
- <DepenentLayout
- Ohos:height = "100VP"
- ohos:width = "100vp" >
- <roundprogressbar
- ohos:id = "$+id:rgb_gas"
- ohos:height = "match_parent"
- ohos:width = "match_parent"
- ohos:progress_width = "10vp"
- Ohos:Progress = "0"
- Ohos: max = "1000"
- ohos:start_angle = "215"
- ohos:max_angle = "290"
- ohos:progress_color = "#00ff00"
- ohos:center_in_parent = "true" />
- <テキスト
- ohos:id = "$+id:tvmaxcgas"
- ohos:height = "match_content"
- ohos:width = "match_content"
- ohos:text_size = "15vp"
- ohos:text = "不明"
- ohos:text_color = "#000000"
- ohos:top_margin = "8vp"
- ohos:horizontal_center = "true"
- ohos:align_parent_top = "true" />
- <テキスト
- ohos:id = "$+id:tvcgas"
- ohos:height = "match_content"
- ohos:width = "match_content"
- ohos:text_size = "15vp"
- ohos:text = "不明"
- ohos:text_color = "#000000"
- ohos:center_in_parent = "true" />
- <テキスト
- ohos:id = "$+id:tvmincgas"
- ohos:height = "match_content"
- ohos:width = "match_content"
- ohos:text_size = "15vp"
- ohos:text = "不明"
- ohos:text_color = "#000000"
- ohos:bottom_margin = "8vp"
- ohos:horizontal_center = "true"
- ohos:align_parent_bottom = "true" />
- </DepenentLayout>
- </directionallayout>
-
- <DirectionAllayout
- ohos:height = "3VP"
- ohos:width = "match_parent"
- ohos:background_element = "#ffffff"
- ohos:top_margin = "15vp"
- ohos:left_margin = "20vp"
- ohos:right_margin = "20vp"
- ohos:layout_alignment = "center"
- ohos:bottom_margin = "15vp"
- ohos:visibility = "Invisible" />
-
-
- <DirectionAllayout
- ohos:height = "match_content"
- ohos:width = "match_content"
- ohos:layout_alignment = "center"
- Ohos:Orientation = "Horizontal" >
- <テキスト
- ohos:height = "match_content"
- ohos:width = "match_content"
- Ohos:Text = "Gas State:"
- ohos:text_size = "18vp"
- ohos:text_color = "#000000" />
- <テキスト
- ohos:id = "$+id:tvcgasstatus"
- ohos:height = "match_content"
- ohos:width = "match_content"
- ohos:text = "不明"
- ohos:text_size = "18vp"
- ohos:text_color = "#000000" />
- </directionallayout>
- </directionallayout>
- </directionallayout>
- </DepenentLayout>
-
- </directionallayout>
4.config.json - {
- "アプリ" : {
- 「Bundlename」 : 「com.isoftstone。distributeddata」 、
- 「ベンダー」 : 「isoftstone」 、
- 「バージョン」 :{
- 「コード」 :1000000、
- 「名前」 : 「1.0.0」
- }
- },
- 「deviceconfig」 :{}、
- 「モジュール」 :{
- 「パッケージ」 : "com.isoftstone.distributeddata" 、
- 「名前」 : 「myApplication」 、
- 「Mainability」 : "com.isoftstone.distributeddata.com.isoftstone.distributeddata.tvability" 、
- 「DeviceType」 :[
- "電話"
- ]、
- 「ディストリビューション」 :{
- 「配信ウィットインストール」 :本当、
- 「moduleName」 : 「エントリ」 、
- 「ModuleType」 : 「エントリ」 、
- 「installationfree」 : false
- },
- 「reqpermissions」 :[
- {
- 「名前」 : "ohos.permiss.distributed_datasync"
- }
- ]、
- 「能力」 :[
- {
- 「スキル」 :[
- {
- 「エンティティ」 :[
- 「entity.system.home」
- ]、
- 「アクション」 :[
- 「action.system.home」
- ]
- }
- ]、
- 「オリエンテーション」 : 「風景」 、
- 「名前」 : 「com.isoftstone.distributeddata.tvability」 、
- 「アイコン」 : 「$ Media:Icon」 、
- 「説明」 : "$ string:tvability_description" 、
- 「ラベル」 : "$ string:entry_tvability" 、
- 「タイプ」 : 「ページ」 、
- 「LaunchType」 : 「標準」
- }
- ]、
- 「メタデータ」 :{
- 「customizata」 :[
- {
- 「名前」 : 「hwc-theme」 、
- 「値」 : 「Androidhwext:style/theme.emui.notitlebar」 、
- "余分な" : ""
- }
- ]
- }
- }
- }
詳細については、ご覧ください。 51CTOとHungmengテクノロジーコミュニティを構築するためのHuaweiの公式協力 https://harmonyos..co |