arkts-layout-development-stack-layout.md 4.5 KB
Newer Older
H
HelloCrease 已提交
1
# 层叠布局(Stack)
Z
zengyawen 已提交
2 3 4 5


## 概述

6
层叠布局(StackLayout)用于在屏幕上预留一块区域来显示组件中的元素,提供元素可以重叠的布局。层叠布局通过[Stack](../reference/arkui-ts/ts-container-stack.md)容器组件实现位置的固定定位与层叠,容器中的子元素(子组件)依次入栈,后一个子元素覆盖前一个子元素,子元素可以叠加,也可以设置位置。
Z
zengyawen 已提交
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24

层叠布局具有较强的页面层叠、位置定位能力,其使用场景有广告、卡片层叠效果等。

如图1,Stack作为容器,容器内的子元素(子组件)的顺序为Item1->Item2->Item3。


  **图1** 层叠布局  

![stack-layout](figures/stack-layout.png)


## 开发布局

Stack组件为容器组件,容器内可包含各种子组件。其中的子组件根据自己的大小默认进行居中堆叠。子元素被约束在Stack下,进行自己的样式定义以及排列。



```ts
L
lixinnan 已提交
25
let MTop:Record<string,number> = { 'top': 50 }
Z
zengyawen 已提交
26 27 28 29 30
Column(){
  Stack({ }) {
    Column(){}.width('90%').height('100%').backgroundColor('#ff58b87c')
    Text('text').width('60%').height('60%').backgroundColor('#ffc3f6aa')
    Button('button').width('30%').height('30%').backgroundColor('#ff8ff3eb').fontColor('#000')
L
lixinnan 已提交
31
  }.width('100%').height(150).margin(MTop)
Z
zengyawen 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
}
```


![stack-layout-sample](figures/stack-layout-sample.png)


## 对齐方式

Stack组件通过[alignContent参数](../reference/arkui-ts/ts-appendix-enums.md#alignment)实现位置的相对移动。如图2所示,支持九种对齐方式。

  **图2** Stack容器内元素的对齐方式  

![zh-cn_image_0000001562940621](figures/zh-cn_image_0000001562940621.png)


## Z序控制

Stack容器中兄弟组件显示层级关系可以通过[Z序控制](../reference/arkui-ts/ts-universal-attributes-z-order.md)的zIndex属性改变。zIndex值越大,显示层级越高,即zIndex值大的组件会覆盖在zIndex值小的组件上方。

  在层叠布局中,如果后面子元素尺寸大于前面子元素尺寸,则前面子元素完全隐藏。

```ts
L
lixinnan 已提交
55
let MTopM1:Record<string,number> = { 'top': 100 }
Z
zengyawen 已提交
56 57 58 59 60 61 62 63 64 65 66 67
Stack({ alignContent: Alignment.BottomStart }) {
  Column() {
    Text('Stack子元素1').textAlign(TextAlign.End).fontSize(20)
  }.width(100).height(100).backgroundColor(0xffd306)

  Column() {
    Text('Stack子元素2').fontSize(20)
  }.width(150).height(150).backgroundColor(Color.Pink)

  Column() {
    Text('Stack子元素3').fontSize(20)
  }.width(200).height(200).backgroundColor(Color.Grey)
L
lixinnan 已提交
68
}.margin(MTopM1).width(350).height(350).backgroundColor(0xe0e0e0)
Z
zengyawen 已提交
69 70 71 72 73 74 75 76
```

![zh-cn_image_0000001511900544](figures/zh-cn_image_0000001511900544.png)

下图中,最后的子元素3的尺寸大于前面的所有子元素,所以,前面两个元素完全隐藏。改变子元素1,子元素2的zIndex属性后,可以将元素展示出来。


```ts
L
lixinnan 已提交
77
let MTopM:Record<string,number> = { 'top': 100 }
Z
zengyawen 已提交
78 79 80 81 82 83 84 85 86 87 88 89
Stack({ alignContent: Alignment.BottomStart }) {
  Column() {
    Text('Stack子元素1').fontSize(20)
  }.width(100).height(100).backgroundColor(0xffd306).zIndex(2)

  Column() {
    Text('Stack子元素2').fontSize(20)
  }.width(150).height(150).backgroundColor(Color.Pink).zIndex(1)

  Column() {
    Text('Stack子元素3').fontSize(20)
  }.width(200).height(200).backgroundColor(Color.Grey)
L
lixinnan 已提交
90
}.margin(MTopM).width(350).height(350).backgroundColor(0xe0e0e0)
Z
zengyawen 已提交
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
```

![zh-cn_image_0000001563060797](figures/zh-cn_image_0000001563060797.png)


## 场景示例

使用层叠布局快速搭建页面显示模型。


```ts
@Entry
@Component
struct StackSample {
  private arr: string[] = ['APP1', 'APP2', 'APP3', 'APP4', 'APP5', 'APP6', 'APP7', 'APP8'];

  build() {
    Stack({ alignContent: Alignment.Bottom }) {
      Flex({ wrap: FlexWrap.Wrap }) {
L
lixinnan 已提交
110
        ForEach(this.arr, (item:string) => {
Z
zengyawen 已提交
111 112 113 114 115 116 117 118
          Text(item)
            .width(100)
            .height(100)
            .fontSize(16)
            .margin(10)
            .textAlign(TextAlign.Center)
            .borderRadius(10)
            .backgroundColor(0xFFFFFF)
L
lixinnan 已提交
119
        }, ((item:string):string => item))
Z
zengyawen 已提交
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
      }.width('100%').height('100%')

      Flex({ justifyContent: FlexAlign.SpaceAround, alignItems: ItemAlign.Center }) {
        Text('联系人').fontSize(16)
        Text('设置').fontSize(16)
        Text('短信').fontSize(16)
      }
      .width('50%')
      .height(50)
      .backgroundColor('#16302e2e')
      .margin({ bottom: 15 })
      .borderRadius(15)
    }.width('100%').height('100%').backgroundColor('#CFD0CF')
  }
}
```


![zh-cn_image_0000001511421368](figures/zh-cn_image_0000001511421368.png)