鸿蒙Arkts引入资源

 

@Entry
@Component
struct demo {
  @Styles
  imgStyle(){
    .width(80)
    .height(80)
  }
 
  build() {
    Row() {
      Column({ space: 20 }) {
        //   方式一: 使用$提示符选择第一个从app.media选择图片,不需要图片后缀名,图片资源放在resources>base>media文件夹中
        Image($r("app.media.106")).imgStyle()
        //   方式二:使用$提示符选择第二个,图片资源放在resources文件夹的rawfile文件夹中
        Image($rawfile("106.jpg")).imgStyle()
        //   方式三:直接写图片路径,放在assets文件夹下,如果是网络图片地址,也是直接使用这个方式复制网络图片的地址即可
        Image("/assets/106.jpg").imgStyle2()
        //   网络图片显示写法
        Image("https://wx2.sinaimg.cn/mw690/005to85Yly1hislbd5s9yj35k63pge87.jpg").imgStyle2()
      }
      .width('100%')
    }
    .height('100%')
  }
}
 
@Styles
function  imgStyle2(){
  .width(120)
  .height(120)
}

 

posted @ 2024-03-19 15:12  多见多闻  阅读(320)  评论(0)    收藏  举报