1 个回答

切换主画面入口主要是在index.ets文件中设置,具体参考示例如下:

@Entry 
@Component 
struct Index { 
  private message: string = '' 
 
  aboutToAppear() { 
    getContext().getApplicationContext().setLanguage('en-US') 
    this.message = getContext(this).resourceManager.getStringSync($r('app.string.hello').id) 
  } 
 
  build() { 
    Column({ space: 20 }) { 
      Text($r('app.string.hello')) 
        .fontSize(30) 
 
      Text(this.message) 
        .fontSize(30) 
    } 
    .justifyContent(FlexAlign.Center) 
    .height('100%') 
    .width('100%') 
  } 
}