ui-ts-creating-simple-page.md 16.1 KB
Newer Older
Z
zengyawen 已提交
1 2
# 创建简单视图

T
tianyu 已提交
3
在这一小节中,我们将开始食物详情页的开发,学习如何通过容器组件Stack、Flex和基础组件Image、Text,构建用户自定义组件,完成图文并茂的食物介绍。
Z
zengyawen 已提交
4

5
在创建页面前,请先创建ArkTS工程,FA模型请参考[创建FA模型的ArkTS工程](../quick-start/start-with-ets-stage.md#创建arkts工程),Stage模型请参考[创建Stage模型的ArkTS工程](../quick-start/start-with-ets-fa.md#创建arkts工程)
Y
yamila 已提交
6

Z
zengyawen 已提交
7 8 9 10

## 构建Stack布局

1. 创建食物名称。
Y
yamila 已提交
11 12 13 14
   
   在index.ets文件中,创建Stack组件,将Text组件放进Stack组件的花括号中,使其成为Stack组件的子组件。Stack组件为堆叠组件,可以包含一个或多个子组件,其特点是后一个子组件覆盖前一个子组件。
   
   ```ts
Z
zengyawen 已提交
15 16 17 18 19 20 21 22 23 24
   @Entry
   @Component
   struct MyComponent {
     build() {
       Stack() {
           Text('Tomato')
               .fontSize(26)
               .fontWeight(500)
       }
     }
25
   }
Z
zengyawen 已提交
26 27 28
   ```

   ![zh-cn_image_0000001214128687](figures/zh-cn_image_0000001214128687.png)
Y
yamila 已提交
29
   
Z
zengyawen 已提交
30
2. 食物图片展示。
T
tianyu 已提交
31
   创建Image组件,指定Image组件的url,Image组件是必选构造参数组件。为了让Text组件在Image组件上方显示,所以要先声明Image组件。图片资源放在resources下的rawfile文件夹内,引用rawfile下资源时使用`$rawfile('filename')`的形式,filename为rawfile目录下的文件相对路径。当前`$rawfile`仅支持Image控件引用图片资源。
Y
yamila 已提交
32 33

   ```ts
Z
zengyawen 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47
   @Entry
   @Component
   struct MyComponent {
     build() {
       Stack() {
           Image($rawfile('Tomato.png'))
           Text('Tomato')
               .fontSize(26)
               .fontWeight(500)
       }
     }
   }
   ```

T
tianyu 已提交
48

Y
yamila 已提交
49
   ![zh-cn_image_0000001168410342](figures/zh-cn_image_0000001168410342.png)
Z
zengyawen 已提交
50 51

3. 通过资源访问图片。
H
HelloCrease 已提交
52
   除指定图片路径外,也可以使用引用媒体资源符$r引用资源,需要遵循resources文件夹的资源限定词的规则。右键resources文件夹,点击New>Resource Directory,选择Resource Type为Media(图片资源)。
Z
zengyawen 已提交
53

H
HelloCrease 已提交
54
   将Tomato.png放入media文件夹内。就可以通过`$r('app.type.name')`的形式引用应用资源,即`$r('app.media.Tomato')`
Z
zengyawen 已提交
55

Y
yamila 已提交
56 57
   ```ts
   @Entry
Z
zengyawen 已提交
58 59 60 61
   @Component
   struct MyComponent {
     build() {
       Stack() {
Y
yamila 已提交
62 63 64 65 66 67
         Image($r('app.media.Tomato'))
           .objectFit(ImageFit.Contain)
           .height(357)
         Text('Tomato')
           .fontSize(26)
           .fontWeight(500)
Z
zengyawen 已提交
68 69 70
       }
     }
   }
Y
yamila 已提交
71
   ```
Z
zengyawen 已提交
72 73 74 75

4. 设置Image宽高,并且将image的objectFit属性设置为ImageFit.Contain,即保持图片长宽比的情况下,使得图片完整地显示在边界内。
   如果Image填满了整个屏幕,原因如下:
   1. Image没有设置宽高。
H
HelloCrease 已提交
76

Z
zengyawen 已提交
77 78
   2. Image的objectFit默认属性是ImageFit.Cover,即在保持长宽比的情况下放大或缩小,使其填满整个显示边界。

Y
yamila 已提交
79 80
   ```ts
   @Entry
Z
zengyawen 已提交
81 82 83 84
   @Component
   struct MyComponent {
     build() {
       Stack() {
Y
yamila 已提交
85 86 87 88 89 90
         Image($r('app.media.Tomato'))
           .objectFit(ImageFit.Contain)
           .height(357)
         Text('Tomato')
           .fontSize(26)
           .fontWeight(500)
Z
zengyawen 已提交
91 92 93
       }
     }
   }
Y
yamila 已提交
94
   ```
Z
zengyawen 已提交
95

Y
yamila 已提交
96
     ![zh-cn_image_0000001214210217](figures/zh-cn_image_0000001214210217.png)
Z
zengyawen 已提交
97 98

5. 设置食物图片和名称布局。设置Stack的对齐方式为底部起始端对齐,Stack默认为居中对齐。设置Stack构造参数alignContent为Alignment.BottomStart。其中Alignment和FontWeight一样,都是框架提供的内置枚举类型。
T
tianyu 已提交
99

Y
yamila 已提交
100 101
   ```ts
   @Entry
Z
zengyawen 已提交
102 103 104 105
   @Component
   struct MyComponent {
     build() {
       Stack({ alignContent: Alignment.BottomStart }) {
Y
yamila 已提交
106 107 108 109 110 111
         Image($r('app.media.Tomato'))
           .objectFit(ImageFit.Contain)
           .height(357)
         Text('Tomato')
           .fontSize(26)
           .fontWeight(500)
Z
zengyawen 已提交
112 113 114
       }
     }
   }
Y
yamila 已提交
115
   ```
T
tianyu 已提交
116

Y
yamila 已提交
117
     ![zh-cn_image_0000001168728872](figures/zh-cn_image_0000001168728872.png)
Z
zengyawen 已提交
118

Y
yamila 已提交
119
6. 调整Text组件的外边距margin,使其距离左侧和底部有一定的距离。margin是简写属性,可以统一指定四个边的外边距,也可以分别指定。具体设置方式如下:
Z
zengyawen 已提交
120 121 122 123

   1. 参数为Length时,即统一指定四个边的外边距,比如margin(20),即上、右、下、左四个边的外边距都是20。
   2. 参数为{top?: Length, right?: Length, bottom?: Length, left?:Length},即分别指定四个边的边距,比如margin({ left: 26, bottom: 17.4 }),即左边距为26,下边距为17.4。

Y
yamila 已提交
124 125
   ```ts
   @Entry
Z
zengyawen 已提交
126 127 128 129 130 131 132 133 134 135 136
   @Component
   struct MyComponent {
     build() {
       Stack({ alignContent: Alignment.BottomStart }) {
           Image($r('app.media.Tomato'))
               .objectFit(ImageFit.Contain)
               .height(357)
           Text('Tomato')
               .fontSize(26)
               .fontWeight(500)
               .margin({left: 26, bottom: 17.4})
Y
yamila 已提交
137
       }   
Z
zengyawen 已提交
138 139
     }
   }
Y
yamila 已提交
140
   ```
T
tianyu 已提交
141

Y
yamila 已提交
142
     ![zh-cn_image_0000001213968747](figures/zh-cn_image_0000001213968747.png)
Z
zengyawen 已提交
143

Y
yamila 已提交
144
7. 调整组件间的结构,语义化组件名称。创建页面入口组件为FoodDetail,在FoodDetail中创建Column,设置水平方向上居中对齐 alignItems(HorizontalAlign.Center)。MyComponent组件名改为FoodImageDisplay,为FoodDetail的子组件。
Z
zengyawen 已提交
145 146 147

   Column是子组件竖直排列的容器组件,本质为线性布局,所以只能设置交叉轴方向的对齐。

Y
yamila 已提交
148 149
   ```ts
   @Component
Z
zengyawen 已提交
150 151 152 153 154 155 156 157 158 159
   struct FoodImageDisplay {
     build() {
       Stack({ alignContent: Alignment.BottomStart }) {
         Image($r('app.media.Tomato'))
           .objectFit(ImageFit.Contain)
         Text('Tomato')
           .fontSize(26)
           .fontWeight(500)
           .margin({ left: 26, bottom: 17.4 })
       }
Y
yamila 已提交
160
       .height(357)   
Z
zengyawen 已提交
161 162
     }
   }
Y
yamila 已提交
163
   
Z
zengyawen 已提交
164 165 166 167 168 169 170 171 172 173
   @Entry
   @Component
   struct FoodDetail {
     build() {
       Column() {
         FoodImageDisplay()
       }
       .alignItems(HorizontalAlign.Center)
     }
   }
Y
yamila 已提交
174
   ```
Z
zengyawen 已提交
175 176 177 178 179 180

## 构建Flex布局

开发者可以使用Flex弹性布局来构建食物的食物成分表,弹性布局在本场景的优势在于可以免去多余的宽高计算,通过比例来设置不同单元格的大小,更加灵活。

1. 创建ContentTable组件,使其成为页面入口组件FoodDetail的子组件。
T
tianyu 已提交
181

Y
yamila 已提交
182 183
   ```ts
   @Component
Z
zengyawen 已提交
184 185 186 187 188 189 190 191 192 193 194 195 196
   struct FoodImageDisplay {
     build() {
       Stack({ alignContent: Alignment.BottomStart }) {
         Image($r('app.media.Tomato'))
           .objectFit(ImageFit.Contain)
           .height(357)
         Text('Tomato')
           .fontSize(26)
           .fontWeight(500)
           .margin({ left: 26, bottom: 17.4 })
       }
     }
   }
Y
yamila 已提交
197
   
Z
zengyawen 已提交
198 199
   @Component
   struct ContentTable {
Y
yamila 已提交
200 201
     build() {
     }
Z
zengyawen 已提交
202
   }
Y
yamila 已提交
203
   
Z
zengyawen 已提交
204 205 206 207 208 209 210 211 212 213 214
   @Entry
   @Component
   struct FoodDetail {
     build() {
       Column() {
         FoodImageDisplay()
         ContentTable()
       }
       .alignItems(HorizontalAlign.Center)
     }
   }
Y
yamila 已提交
215
   ```
Z
zengyawen 已提交
216 217 218 219 220 221 222 223

2. 创建Flex组件展示Tomato两类成分。
   一类是热量Calories,包含卡路里(Calories);一类是营养成分Nutrition,包含蛋白质(Protein)、脂肪(Fat)、碳水化合物(Carbohydrates)和维生素C(VitaminC)。

   先创建热量这一类。创建Flex组件,高度为280,上、右、左内边距为30,包含三个Text子组件分别代表类别名(Calories),含量名称(Calories)和含量数值(17kcal)。Flex组件默认为水平排列方式。

   已省略FoodImageDisplay代码,只针对ContentTable进行扩展。

Y
yamila 已提交
224 225
   ```ts
   @Component
Z
zengyawen 已提交
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
   struct ContentTable {
     build() {
       Flex() {
         Text('Calories')
           .fontSize(17.4)
           .fontWeight(FontWeight.Bold)
         Text('Calories')
           .fontSize(17.4)
         Text('17kcal')
           .fontSize(17.4)
       }
       .height(280)
       .padding({ top: 30, right: 30, left: 30 })
     }
   }
Y
yamila 已提交
241
   
Z
zengyawen 已提交
242 243 244 245 246 247 248 249 250 251 252
   @Entry
   @Component
   struct FoodDetail {
     build() {
       Column() {
         FoodImageDisplay()
         ContentTable()
       }
       .alignItems(HorizontalAlign.Center)
     }
   }
Y
yamila 已提交
253 254 255 256 257
   ```
   
   
      ![zh-cn_image_0000001169759552](figures/zh-cn_image_0000001169759552.png)
   
Z
zengyawen 已提交
258
3. 调整布局,设置各部分占比。分类名占比(layoutWeight)为1,成分名和成分含量一共占比(layoutWeight)2。成分名和成分含量位于同一个Flex中,成分名占据所有剩余空间flexGrow(1)。
T
tianyu 已提交
259

Y
yamila 已提交
260 261
   ```ts
   @Component
Z
zengyawen 已提交
262 263 264
   struct FoodImageDisplay {
     build() {
       Stack({ alignContent: Alignment.BottomStart }) {
265
         Image($r('app.media.Tomato'))
Z
zengyawen 已提交
266 267 268 269 270 271
           .objectFit(ImageFit.Contain)
           .height(357)
         Text('Tomato')
           .fontSize(26)
           .fontWeight(500)
           .margin({ left: 26, bottom: 17.4 })
Y
yamila 已提交
272
       }  
Z
zengyawen 已提交
273 274
     }
   }
Y
yamila 已提交
275
   
Z
zengyawen 已提交
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
   @Component
   struct ContentTable {
     build() {
       Flex() {
         Text('Calories')
           .fontSize(17.4)
           .fontWeight(FontWeight.Bold)
           .layoutWeight(1)
         Flex() {
           Text('Calories')
             .fontSize(17.4)
             .flexGrow(1)
           Text('17kcal')
             .fontSize(17.4)
         }
         .layoutWeight(2)
       }
       .height(280)
       .padding({ top: 30, right: 30, left: 30 })
     }
   }
Y
yamila 已提交
297
   
Z
zengyawen 已提交
298 299 300 301 302 303 304 305 306 307 308
   @Entry
   @Component
   struct FoodDetail {
     build() {
       Column() {
         FoodImageDisplay()
         ContentTable()
       }
       .alignItems(HorizontalAlign.Center)
     }
   }
Y
yamila 已提交
309 310 311 312
   ```
   
     ![zh-cn_image_0000001215079443](figures/zh-cn_image_0000001215079443.png)
   
Z
zengyawen 已提交
313 314 315
4. 仿照热量分类创建营养成分分类。营养成分部分(Nutrition)包含:蛋白质(Protein)、脂肪(Fat)、碳水化合物(Carbohydrates)和维生素C(VitaminC)四个成分,后三个成分在表格中省略分类名,用空格代替。
   设置外层Flex为竖直排列FlexDirection.Column, 在主轴方向(竖直方向)上等距排列FlexAlign.SpaceBetween,在交叉轴方向(水平轴方向)上首部对齐排列ItemAlign.Start。

Y
yamila 已提交
316 317
   ```ts
   @Component
Z
zengyawen 已提交
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
   struct ContentTable {
     build() {
       Flex({ direction: FlexDirection.Column, justifyContent: FlexAlign.SpaceBetween, alignItems: ItemAlign.Start }) {
         Flex() {
           Text('Calories')
             .fontSize(17.4)
             .fontWeight(FontWeight.Bold)
             .layoutWeight(1)
           Flex() {
             Text('Calories')
               .fontSize(17.4)
               .flexGrow(1)
             Text('17kcal')
               .fontSize(17.4)
           }
           .layoutWeight(2)
         }
         Flex() {
           Text('Nutrition')
             .fontSize(17.4)
             .fontWeight(FontWeight.Bold)
             .layoutWeight(1)
           Flex() {
             Text('Protein')
               .fontSize(17.4)
               .flexGrow(1)
             Text('0.9g')
               .fontSize(17.4)
           }
           .layoutWeight(2)
         }
         Flex() {
           Text(' ')
             .fontSize(17.4)
             .fontWeight(FontWeight.Bold)
             .layoutWeight(1)
           Flex() {
             Text('Fat')
               .fontSize(17.4)
               .flexGrow(1)
             Text('0.2g')
               .fontSize(17.4)
           }
           .layoutWeight(2)
         }
         Flex() {
           Text(' ')
             .fontSize(17.4)
             .fontWeight(FontWeight.Bold)
             .layoutWeight(1)
           Flex() {
             Text('Carbohydrates')
               .fontSize(17.4)
               .flexGrow(1)
             Text('3.9g')
               .fontSize(17.4)
           }
           .layoutWeight(2)
         }
         Flex() {
           Text(' ')
             .fontSize(17.4)
             .fontWeight(FontWeight.Bold)
             .layoutWeight(1)
           Flex() {
             Text('vitaminC')
               .fontSize(17.4)
               .flexGrow(1)
             Text('17.8mg')
               .fontSize(17.4)
           }
           .layoutWeight(2)
         }
       }
       .height(280)
       .padding({ top: 30, right: 30, left: 30 })
     }
   }
Y
yamila 已提交
396
   
Z
zengyawen 已提交
397 398 399 400 401 402 403 404 405 406 407
   @Entry
   @Component
   struct FoodDetail {
       build() {
           Column() {
               FoodImageDisplay()
               ContentTable()
           }
           .alignItems(HorizontalAlign.Center)
       }
   }
Y
yamila 已提交
408
   ```
Z
zengyawen 已提交
409 410 411 412

5. 使用自定义构造函数\@Builder简化代码。可以发现,每个成分表中的成分单元其实都是一样的UI结构。
   ![zh-cn_image_0000001169599582](figures/zh-cn_image_0000001169599582.png)

L
luoying_ace_admin 已提交
413
   当前对每个成分单元都进行了声明,造成了代码的重复和冗余。可以使用\@Builder来构建自定义方法,抽象出相同的UI结构声明。\@Builder修饰的方法和Component的build方法都是为了声明一些UI渲染结构,遵循一样的ArkTS语法。开发者可以定义一个或者多个\@Builder修饰的方法,但Component的build方法必须只有一个。
Z
zengyawen 已提交
414 415 416

   在ContentTable内声明\@Builder修饰的IngredientItem方法,用于声明分类名、成分名称和成分含量UI描述。

Y
yamila 已提交
417 418
   ```ts
    @Component
Z
zengyawen 已提交
419
   struct ContentTable {
H
HelloCrease 已提交
420
     @Builder IngredientItem(title:string, name: string, value: string) {
Z
zengyawen 已提交
421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436
       Flex() {
         Text(title)
           .fontSize(17.4)
           .fontWeight(FontWeight.Bold)
           .layoutWeight(1)
         Flex({ alignItems: ItemAlign.Center }) {
           Text(name)
             .fontSize(17.4)
             .flexGrow(1)
           Text(value)
             .fontSize(17.4)
         }
         .layoutWeight(2)
       }
     }
   }
Y
yamila 已提交
437
   ```
Z
zengyawen 已提交
438

Y
yamila 已提交
439
   在ContentTable的build方法内调用IngredientItem接口,需要用this去调用该Component作用域内的方法,以此来区分全局的方法调用。
T
tianyu 已提交
440

Y
yamila 已提交
441 442
   ```ts
   @Component
Z
zengyawen 已提交
443 444 445 446 447 448 449 450 451 452 453 454 455 456
   struct ContentTable {
     ......
     build() {
       Flex({ direction: FlexDirection.Column, justifyContent: FlexAlign.SpaceBetween, alignItems: ItemAlign.Start }) {
         this.IngredientItem('Calories', 'Calories', '17kcal')
         this.IngredientItem('Nutrition', 'Protein', '0.9g')
         this.IngredientItem('', 'Fat', '0.2g')
         this.IngredientItem('', 'Carbohydrates', '3.9g')
         this.IngredientItem('', 'VitaminC', '17.8mg')
       }
       .height(280)
       .padding({ top: 30, right: 30, left: 30 })
     }
   }
Y
yamila 已提交
457
   ```
Z
zengyawen 已提交
458

Y
yamila 已提交
459
   ContentTable组件整体代码如下。
T
tianyu 已提交
460

Y
yamila 已提交
461 462
   ```ts
   @Component
Z
zengyawen 已提交
463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479
   struct ContentTable {
     @Builder IngredientItem(title:string, name: string, value: string) {
       Flex() {
         Text(title)
           .fontSize(17.4)
           .fontWeight(FontWeight.Bold)
           .layoutWeight(1)
         Flex() {
           Text(name)
             .fontSize(17.4)
             .flexGrow(1)
           Text(value)
             .fontSize(17.4)
         }
         .layoutWeight(2)
       }
     }
Y
yamila 已提交
480 481 482 483 484 485 486 487 488 489 490 491
   
     build() {
       Flex({ direction: FlexDirection.Column, justifyContent: FlexAlign.SpaceBetween, alignItems: ItemAlign.Start }) {
         this.IngredientItem('Calories', 'Calories', '17kcal')
         this.IngredientItem('Nutrition', 'Protein', '0.9g')
         this.IngredientItem('', 'Fat', '0.2g')
         this.IngredientItem('', 'Carbohydrates', '3.9g')
         this.IngredientItem('', 'VitaminC', '17.8mg')
       }
       .height(280)
       .padding({ top: 30, right: 30, left: 30 })
     }
Z
zengyawen 已提交
492
   }
Y
yamila 已提交
493
   
Z
zengyawen 已提交
494 495 496 497 498 499 500 501 502 503 504
   @Entry
   @Component
   struct FoodDetail {
       build() {
           Column() {
               FoodImageDisplay()
               ContentTable()
           }
           .alignItems(HorizontalAlign.Center)
       }
   }
Y
yamila 已提交
505
   ```
Z
zengyawen 已提交
506

Y
yamila 已提交
507
     ![zh-cn_image_0000001215199399](figures/zh-cn_image_0000001215199399.png)
Z
zengyawen 已提交
508 509 510 511 512 513 514

通过学习Stack布局和Flex布局已完成食物的图文展示和营养成分表,构建出第一个普通视图的食物详情页。在下一个章节中,将开发食物分类列表页,并完成食物分类列表页面和食物详情页面的跳转和数据传递,现在我们就进入下一个章节的学习吧。

## 相关实例

针对创建简单视图,有以下示例工程可供参考:

L
luoying_ace_admin 已提交
515
- [`BuildCommonView`:创建简单视图(ArkTS)(API8)](https://gitee.com/openharmony/applications_app_samples/tree/master/ETSUI/BuildCommonView)
516

Z
zengyawen 已提交
517
  本示例为构建了简单页面展示食物番茄的图片和营养信息,主要为了展示简单页面的Stack布局和Flex布局。