精品国产人成在线_亚洲高清无码在线观看_国产在线视频国产永久2021_国产AV综合第一页一个的一区免费影院黑人_最近中文字幕MV高清在线视频

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

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

3天內不再提示

OpenHarmony實例:【資源管理器】

jf_46214456 ? 來源:jf_46214456 ? 作者:jf_46214456 ? 2024-04-09 15:10 ? 次閱讀

介紹

本工程使用[@ohos.app.ability.common] 接口中的AbilityContext類,獲取資源管理器resourceManager,使用[@ohos.resourceManager.d.ts]中的接口,展示了格式化字符串查詢、基于指定屏幕分辨率查詢媒體資源、獲取系統資源管理對象等基礎功能,以及展示了資源靜態overlay以及運行時overlay的特性功能。

效果預覽

image.png

使用說明

此界面為主頁面,其中展示了資源管理API各類接口的調用以及特性Overlay場景功能。其作用有:

1、點擊資源API調用示例按鈕,可跳轉到資源API示例頁面

2、點擊Overlay使用示例,可以跳轉到Overlay的使用示例界面。

資源API調用示例

image.png

使用說明

此頁面展示了當前資源管理接口的調用以及接口對應的返回結果。

靜態overlay場景

image.png

使用說明

此頁面展示靜態overlay功能,功能使用如下:

1、靜態overlay是默認使能的,當前顯示的是靜態overlay中的字符串和圖標。

2、點擊Disable可以觸發去使能,重啟應用可以恢復顯示應用的字符串和圖標。

3、點擊enable可以觸發使能,重啟應用可以再次顯示overlay中的字符串和圖標。

源碼參考:[Overlay示例]在最下面

運行時overlay場景

image.png

使用說明

此頁面展示運行時overlay功能,功能使用如下:

1、點擊addResource可以觸發運行時overlay,此時會使用運行時overlay中的資源覆蓋之前的字符串和圖標。

2、點擊removeResource可以觸發移除運行時overlay,此時會移除運行時overlay,恢復到覆蓋前的字符串和圖標。

具體實現

資源API調用示例具體實現:

1、使用getContext()接口獲取context對象,使用context.resourceManager獲取資源管理對象,然后調用resourceManager內部的相關接口獲取對應資源,例如:

  • 獲取字符串資源:resourceManager.getStringValue()
  • 獲取字符串數組資源:resourceManager.getStringArrayValue()
  • 獲取圖片資源:resourceManager.getMediaContent()
  • 獲取格式化字符串資源:resourceManager.getStringSync()
  • 獲取指定屏幕分辨率媒體資源:resourceManager.getMediaContentBase64()

2、導包resourceManager,使用resourceManager.getSystemResourceManager()獲取系統資源管理對象,然后獲取系統資源。 |

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

源碼參考:[資源API調用示例]

/*

 * Copyright (c) 2023 Huawei Device Co., Ltd.

 * Licensed under the Apache License, Version 2.0 (the "License");

 * you may not use this file except in compliance with the License.

 * You may obtain a copy of the License at

 *

 *     http://www.apache.org/licenses/LICENSE-2.0

 *

 * Unless required by applicable law or agreed to in writing, software

 * distributed under the License is distributed on an "AS IS" BASIS,

 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

 * See the License for the specific language governing permissions and

 * limitations under the License.

 */



import resourceManager from '@ohos.resourceManager';

import hilog from '@ohos.hilog';

import { BusinessError } from '@ohos.base';



const TAG = '[Sample_ResourceManager]';

const DOMAIN = 0xFF00;

const SPECIFIED_NUM = 2;

let resMgr = getContext().resourceManager;



async function getString(resId: number): Promise< string | undefined > {

  try {

    let value = await resMgr.getStringValue(resId);

    return value;

  } catch (error) {

    let code = (error as BusinessError).code;

    let message = (error as BusinessError).message;

    hilog.error(DOMAIN, TAG, `getStringValue failed, error code: ${code}, message: ${message}.`);

    return;

  }

}



async function getStringArray(resource: resourceManager.Resource): Promise< Array< string > | undefined > {

  try {

    let value = await resMgr.getStringArrayValue(resource);

    return value;

  } catch (error) {

    let code = (error as BusinessError).code;

    let message = (error as BusinessError).message;

    hilog.error(DOMAIN, TAG, `getStringArrayValue failed, error code: ${code}, message: ${message}.`);

    return;

  }

}



async function getPluralString(resId: number, num: number): Promise< string | undefined > {

  try {

    let value = await resMgr.getPluralStringValue(resId, num);

    return value;

  } catch (error) {

    let code = (error as BusinessError).code;

    let message = (error as BusinessError).message;

    hilog.error(DOMAIN, TAG, `getPluralStringValue failed, error code: ${code}, message: ${message}.`);

    return;

  }

}



async function getDeviceCapability(): Promise< resourceManager.DeviceCapability | undefined > {

  try {

    let value = await resMgr.getDeviceCapability();

    return value;

  } catch (error) {

    let code = (error as BusinessError).code;

    let message = (error as BusinessError).message;

    hilog.error(DOMAIN, TAG, `getDeviceCapability failed, error code: ${code}, message: ${message}.`);

    return;

  }

}



async function getConfiguration(): Promise< resourceManager.Configuration | undefined > {

  try {

    let value = await resMgr.getConfiguration();

    return value;

  } catch (error) {

    let code = (error as BusinessError).code;

    let message = (error as BusinessError).message;

    hilog.error(DOMAIN, TAG, `getConfiguration failed, error code: ${code}, message: ${message}.`);

    return;

  }

}



async function getMedia(resId: number): Promise< Uint8Array | undefined > {

  try {

    let value = await resMgr.getMediaContent(resId);

    return value;

  } catch (error) {

    let code = (error as BusinessError).code;

    let message = (error as BusinessError).message;

    hilog.error(DOMAIN, TAG, `getMediaContent failed, error code: ${code}, message: ${message}.`);

    return;

  }

}



async function getMediaBase64(resId: number): Promise< string | undefined > {

  try {

    let value = await resMgr.getMediaContentBase64(resId);

    return value;

  } catch (error) {

    let code = (error as BusinessError).code;

    let message = (error as BusinessError).message;

    hilog.error(DOMAIN, TAG, `getMediaContentBase64 failed, error code: ${code}, message: ${message}.`);

    return;

  }

}



function getFormatString(resId: number, world: string): string | undefined {

  try {

    let value = resMgr.getStringSync(resId, world);

    return value;

  } catch (error) {

    let code = (error as BusinessError).code;

    let message = (error as BusinessError).message;

    hilog.error(DOMAIN, TAG, `getStringSync failed, error code: ${code}, message: ${message}.`);

    return;

  }

}



async function getDensityMediaBase64(resId: number, density: number): Promise< string | undefined > {

  try {

    let value = await resMgr.getMediaContentBase64(resId, density);

    return value;

  } catch (error) {

    let code = (error as BusinessError).code;

    let message = (error as BusinessError).message;

    hilog.error(DOMAIN, TAG, `getDensityMediaBase64 failed, error code: ${code}, message: ${message}.`);

    return;

  }

}



async function getSystemMediaBase64(resId: number): Promise< string | undefined > {

  // 獲取僅系統資源管理對象

  let sysMgr = resourceManager.getSystemResourceManager();

  try {

    let value = await sysMgr.getMediaContentBase64(resId);

    return value;

  } catch (error) {

    let code = (error as BusinessError).code;

    let message = (error as BusinessError).message;

    hilog.error(DOMAIN, TAG, `getMediaContentBase64 failed, error code: ${code}, message: ${message}.`);

    return;

  }

}



@Entry

@Component

struct Index {

  @State string_str: string = 'string'

  @State strArray: string = 'stringArray'

  @State plural: string = 'plural'

  @State configuration: string = 'configuration'

  @State capability: string = 'capability'

  @State media: string = 'media'

  @State mediaBase: string = 'mediaBase'

  @State formatStr: string = 'Format String'

  @State densityMedia: string = 'Density Media'

  @State systemRes: string = 'System Res'



  async aboutToAppear() {

    this.string_str = await getString($r('app.string.string_str').id) as string;

    let resource: resourceManager.Resource = {

      bundleName: "ohos.samples.resourcemanager",

      moduleName: "entry",

      id: $r('app.strarray.str_array').id

    }

    this.strArray = JSON.stringify(await getStringArray(resource) as Array< string >);

    this.plural = await getPluralString($r('app.plural.eat_apple').id, SPECIFIED_NUM) as string;

    this.configuration = JSON.stringify(await getConfiguration() as resourceManager.Configuration);

    this.capability = JSON.stringify(await getDeviceCapability() as resourceManager.DeviceCapability);

    this.media = JSON.stringify(((await getMedia($r('app.media.app_icon').id)) as Uint8Array).length);

    this.mediaBase = JSON.stringify(((await getMediaBase64($r('app.media.app_icon').id)) as string).length);

    this.formatStr = getFormatString($r('app.string.formatStr').id,

      await getString($r('app.string.world').id) as string) as string;

    this.densityMedia = await getDensityMediaBase64($r('app.media.density').id, 640) as string;

    this.systemRes = await getSystemMediaBase64($r('sys.media.ohos_app_icon').id) as string;

  }



  build() {

    Column() {

      Text($r('app.string.title'))

        .width('100%')

        .height(50)

        .backgroundColor($r('app.color.text_color'))

        .fontColor(Color.White)

        .fontSize(20)

        .padding({ left: 15 })

      Scroll() {

        Column() {

          Text($r('app.string.stringDesc'))

            .fontSize(25)



          Text(this.string_str)

            .fontSize(25)

            .fontColor('#ffff0000')

            .fontWeight(FontWeight.Bold)



          Text($r('app.string.stringArrayDesc'))

            .fontSize(25)



          Text(this.strArray)

            .fontSize(25)

            .fontColor('#ffff0000')

            .fontWeight(FontWeight.Bold)



          Text($r('app.string.pluralStringDesc'))

            .fontSize(25)



          Text(this.plural)

            .fontSize(25)

            .fontColor('#ffff0000')

            .fontWeight(FontWeight.Bold)



          Text($r('app.string.configurationDesc'))

            .fontSize(25)



          Text(this.configuration)

            .fontSize(25)

            .fontColor('#ffff0000')

            .fontWeight(FontWeight.Bold)



          Text($r('app.string.capabilityDesc'))

            .fontSize(25)



          Text(this.capability)

            .fontSize(25)

            .fontColor('#ffff0000')

            .fontWeight(FontWeight.Bold)



          Text($r('app.string.mediaDesc'))

            .fontSize(25)



          Text(this.media)

            .fontSize(25)

            .fontColor('#ffff0000')

            .fontWeight(FontWeight.Bold)



          Text($r('app.string.mediaBase64Desc'))

            .fontSize(25)



          Text(this.mediaBase)

            .fontSize(25)

            .fontColor('#ffff0000')

            .fontWeight(FontWeight.Bold)



          Text($r('app.string.formatStrDesc'))

            .fontSize(25)



          Text(this.formatStr)

            .fontSize(25)

            .fontColor('#ffff0000')

            .fontWeight(FontWeight.Bold)



          Text($r('app.string.densityMediaDesc'))

            .fontSize(25)



          Image(this.densityMedia)

            .id('getDensityMedia')

            .height('10%')



          Text($r('app.string.systemResDesc'))

            .fontSize(25)



          Image(this.systemRes)

            .id('getSystemMedia')

            .height('10%')

        }

        .width('100%')

        .padding(10)

        .alignItems(HorizontalAlign.Start)

      }

    }

    .width('100%')

    .height('100%')

  }

}

overlay場景的具體實現:

1、靜態overlay主要是通過加載overly中的資源實現資源覆蓋,需要在對應的module.json中添加"targetModuleName":"entry", 表示覆蓋entry中的資源,默認使能,也可調用包管理接口進行使能和去使能。

使用步驟為:在安裝完entry的hap后,需要把library模塊生成的library-default-signed.hsp推送到/data/test下,使用bm install命令進行安裝。

腳本語言如下:

hdc_std shell mount -o remount,rw /

hdc_std install ./entry-default-signed.hap

hdc_std shell mkdir /data/test

hdc_std file send ./libraryOverlay-default-signed.hsp /data/test

hdc_std shell bm install -p "/data/test/libraryOverlay-default-signed.hsp"

pause

2、運行時overlay資源加載,主要是在應用運行過程中實現資源的覆蓋,需要應用主動調用資源的addResource接口實現資源的覆蓋以及資源的移除,此功能不持久化。

使用步驟為: 在安裝完entry的hap后,需要把libraryRuntimeOverlay模塊生成的libraryRuntimeOverlay-default-signed.hsp推送到應用對應的安裝目錄下。

腳本語言如下:

hdc_std shell mount -o remount,rw /

hdc_std install ./entry-default-signed.hap

hdc_std file send ./libraryRuntimeOverlay-default-signed.hsp /data/app/el1/bundle/public/ohos.samples.resourcemanager

pause

源碼參考:[Overlay示例]

/*

 * Copyright (c) 2023 Huawei Device Co., Ltd.

 * Licensed under the Apache License, Version 2.0 (the "License");

 * you may not use this file except in compliance with the License.

 * You may obtain a copy of the License at

 *

 *     http://www.apache.org/licenses/LICENSE-2.0

 *

 * Unless required by applicable law or agreed to in writing, software

 * distributed under the License is distributed on an "AS IS" BASIS,

 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

 * See the License for the specific language governing permissions and

 * limitations under the License.

 */



import overlay from '@ohos.bundle.overlay';

import { BusinessError } from '@ohos.base';



@Entry

@Component

struct Overlay {

  private resmgr = getContext().resourceManager;

  @State message: string = 'Test Overlay'

  @State resources: string = this.resmgr.getStringSync($r("app.string.test_string").id)

  @State pixmap: PixelMap = this.resmgr.getDrawableDescriptor($r("app.media.icon").id).getPixelMap()



  build() {

    Column() {

      Text($r('app.string.title'))

        .width('100%')

        .height(50)

        .backgroundColor($r('app.color.text_color'))

        .fontColor(Color.White)

        .fontSize(20)

        .padding({ left: 15 })



      Text(`${this.message}`)

        .fontSize(50)

        .fontWeight(FontWeight.Bold)

        .margin({

          top: 40

        })



      Button() {

        Text('disable')

          .fontSize(20)

          .fontWeight(FontWeight.Bold)

      }

      .type(ButtonType.Capsule)

      .margin({

        top: 50

      })

      .backgroundColor('#0D9FFB')

      .width('50%')

      .height('5%')

      .onClick(() = > {

        // 非使能

        overlay.setOverlayEnabled("libraryOverlay", false, (err, data) = > {

          if (err && err.code != 0) {

            console.log("error:" + JSON.stringify(err));

            this.message = this.resmgr.getStringSync($r('app.string.unEnableFailed').id);

          } else {

            console.log("data:" + JSON.stringify(data));

            this.message = this.resmgr.getStringSync($r('app.string.unEnableSuccess').id);

          }

        })

      })



      Button() {

        Text('enable')

          .fontSize(20)

          .fontWeight(FontWeight.Bold)

      }

      .type(ButtonType.Capsule)

      .margin({

        top: 20

      })

      .backgroundColor('#0D9FFB')

      .width('50%')

      .height('5%')

      .onClick(() = > {

        // 使能

        overlay.setOverlayEnabled("libraryOverlay", true, (err, data) = > {

          if (err && err.code != 0) {

            console.log("error:" + JSON.stringify(err));

            this.message = this.resmgr.getStringSync($r('app.string.enableFailed').id);

          } else {

            this.message = this.resmgr.getStringSync($r('app.string.enableSuccess').id);

          }

        })

      })



      Button() {

        Text('addResource')

          .fontSize(20)

          .fontWeight(FontWeight.Bold)

      }

      .type(ButtonType.Capsule)

      .margin({

        top: 20

      })

      .backgroundColor('#0D9FFB')

      .width('50%')

      .height('5%')

      .onClick(() = > {

        let path = getContext().bundleCodeDir + "/libraryRuntimeOverlay-default-signed.hsp";

        try {

          let ret = this.resmgr.addResource(path);

          console.error("addResource: ret" + JSON.stringify(ret));

        } catch (error) {

          let code = (error as BusinessError).code;

          let message = (error as BusinessError).message;

          console.error(`addResource failed, error code: ${code}, message: ${message}.`);

        }

        this.pixmap = this.resmgr.getDrawableDescriptor($r("app.media.icon").id).getPixelMap();

        this.resources = this.resmgr.getStringSync($r("app.string.test_string").id);

      })



      Button() {

        Text('removeResource')

          .fontSize(20)

          .fontWeight(FontWeight.Bold)

      }

      .type(ButtonType.Capsule)

      .margin({

        top: 20

      })

      .backgroundColor('#0D9FFB')

      .width('50%')

      .height('5%')

      .onClick(() = > {

        let path = getContext().bundleCodeDir + "/libraryRuntimeOverlay-default-signed.hsp";

        try {

          this.resmgr.removeResource(path);

        } catch (error) {

          let code = (error as BusinessError).code;

          let message = (error as BusinessError).message;

          console.error(`removeResource failed, error code: ${code}, message: ${message}.`);

        }

        this.pixmap = this.resmgr.getDrawableDescriptor($r("app.media.icon").id).getPixelMap();

        this.resources = this.resmgr.getStringSync($r("app.string.test_string").id);

      })



      Image(this.pixmap)

        .width(100)

        .height(100)



      Text(this.resources)

        .fontSize(50)

        .fontWeight(FontWeight.Bold)

    }

    .width('100%')

    .height('100%')

  }

}

審核編輯 黃宇

聲明:本文內容及配圖由入駐作者撰寫或者入駐合作網站授權轉載。文章觀點僅代表作者本人,不代表電子發燒友網立場。文章及其配圖僅供工程師學習之用,如有內容侵權或者其他違規問題,請聯系本站處理。 舉報投訴
  • OpenHarmony
    +關注

    關注

    25

    文章

    3660

    瀏覽量

    16156
收藏 人收藏

    評論

    相關推薦

    淺談數據庫內存和CPU資源控制及資源管理器的應用

    數據庫系統的資源是指內存和CPU(處理資源,擁有資源的多寡,決定了數據查詢的性能。當一個SQL Server實例上,擁有多個獨立的工作負
    的頭像 發表于 10-29 12:12 ?2742次閱讀
    淺談數據庫內存和CPU<b class='flag-5'>資源</b>控制及<b class='flag-5'>資源管理器</b>的應用

    問GPIB卡安裝正確,為什么在資源管理器中沒有板卡GPIB0?

    問GPIB卡安裝正確,為什么在資源管理器中沒有板卡GPIB0?本人已利用GPIB節點和visa函數可以與儀器通信,但在資源管理器中就是沒有GPIB的管理,是因為用的驅動版本低嗎?GPIB卡驅動是2.3的版本,同時它發布時
    發表于 02-20 20:19

    關于如何在LV中實現資源管理器

    希望可以在LV中插入資源管理器,實現的功能就像WINDOWS中的資源管理器一樣的功能,我想從系統API中調用,但發現沒有這種函數啊。希望大神給予幫助。
    發表于 03-08 09:03

    LabVIEW 工程資源管理器

    ,LabVIEW 增加了一個工程資源管理器功能。LabVIEW 工程資源管理器就是一個可以方便查看、調整程序系統結構的工作區。與 VC, VB 等語言中的 project, workspace 相類似。Project 的出現使得 LabVIEW 對于大項目的
    發表于 01-05 16:51

    windows7開機提示“資源管理器已停止工作”

    windows7開機提示“資源管理器已停止工作”的解決方法分享給大家,據一些用戶反映,在使用Win7系統的時候會出現這樣的情況,每次開機都提示“資源管理器已停止工作”如下圖所示: 原因分析: 這是
    發表于 05-19 16:58

    如何用代碼資源管理器跳轉到一個已尋址函數?

    你好,作為PSoC Creator的NeWBEE,我還沒有發現,如何用代碼資源管理器跳轉到一個已尋址函數。在我的程序中,主函數是第一個函數,其他所有函數都在下面。所以我必須把這些功能聲明在上面。如果
    發表于 08-01 08:48

    請問一下資源管理器的cubemxsettings怎么調出來

    請問一下,資源管理器的cubemxsettings怎么調出來
    發表于 10-12 10:22

    TouchGFX文件夾在IDE項目資源管理器中不存在是什么原因?如何解決?

    的文件資源管理器中的文件結構與 STM32CubeIDE 項目資源管理器中顯示的不同。例如,我的文件資源管理器中的 TouchGFX 文件夾在 IDE 項目資源管理器中不存在。是什么原
    發表于 12-05 07:05

    OrCAD信號資源管理器

      Cadence公司的OrCAD ® ®資源管理器的信號使信號探測,分析和驗證,以幫助工程師解決信號完整性問題的整個設計過程中,從設計周期,并最終通過布局布線的開始。在預
    發表于 09-09 17:55 ?1143次閱讀

    Delphi教程_新穎的資源管理器界面

    Delphi教程新穎的資源管理器界面,很好的Delphi資料,快來下載學習吧。
    發表于 03-16 14:49 ?10次下載

    弄個取資源管理器選中文件或文件夾名稱

    易語言是一門以中文作為程序代碼編程語言學習例程:-弄個取資源管理器選中文件或文件夾名稱
    發表于 06-06 17:01 ?11次下載

    Win10 11月更新的文件資源管理器假死頻繁

    為了防止翻車,微軟依然采取小范圍推出Windows 10 November 2019 Update(version 1909)的更新,但即便如此,依然還是出現了不少問題,特別是資源管理器搜索方面的。
    的頭像 發表于 12-19 09:18 ?4247次閱讀

    微軟欲改善Windows 10文件資源管理器體驗

    根據一份新的職位清單,微軟希望提供更現代的File Explorer(文件資源管理器)體驗。
    的頭像 發表于 02-26 14:26 ?1860次閱讀
    微軟欲改善Windows 10文件<b class='flag-5'>資源管理器</b>體驗

    YARN資源管理器的容錯和架構概述

    Apache Hadoop YARN (Yet Another Resource Negotiator,另一種資源協調者)是一種新的 Hadoop 資源管理器,它是一個通用資源管理系統,可為上層應用提供統一的
    發表于 04-22 08:00 ?0次下載
    YARN<b class='flag-5'>資源管理器</b>的容錯和架構概述

    Win10可選更新:修復資源管理器崩潰

    據外媒 WindowsLatest,微軟最近為 Windows 10 發布了 KB4586819 可選更新,修復了文件資源管理器崩潰,游戲和 USB 等多個問題。 此更新補丁附帶了很長的 bug
    的頭像 發表于 11-23 11:01 ?1749次閱讀