注:若是启动应用后,再去切换系统字体,应用热启动时,需要在onPageShow中使用resourceManager获取资源。示例demo:import { common } from '@kit.AbilityKit';@Entry@Componentstruct Index {@State message: string = 'Hello World';private context = getContext(this) as common.Context;onPageShow(): void {try {this.message = this.context.resourceManager.getStringSync($r('app.string.module_desc').id);} catch (error) {}}build() {Column() {Text(this.message).id('HelloWorld').fontSize(50).fontWeight(FontWeight.Bold)}.height('100%').width('100%')}}
注:若是启动应用后,再去切换系统字体,应用热启动时,需要在onPageShow中使用resourceManager获取资源。
示例demo:
import { common } from '@kit.AbilityKit';
@Entry
@Component
struct Index {
@State message: string = 'Hello World';
private context = getContext(this) as common.Context;
onPageShow(): void {
try {
this.message = this.context.resourceManager.getStringSync($r('app.string.module_desc').id);
} catch (error) {
}
}
build() {
Column() {
Text(this.message).id('HelloWorld').fontSize(50).fontWeight(FontWeight.Bold)
}.height('100%').width('100%')
}
}