層疊布局(Stack)

2024-01-25 13:10 更新

概述

層疊布局(StackLayout)用于在屏幕上預(yù)留一塊區(qū)域來顯示組件中的元素,提供元素可以重疊的布局。層疊布局通過Stack容器組件實現(xiàn)位置的固定定位與層疊,容器中的子元素(子組件)依次入棧,后一個子元素覆蓋前一個子元素,子元素可以疊加,也可以設(shè)置位置。

層疊布局具有較強(qiáng)的頁面層疊、位置定位能力,其使用場景有廣告、卡片層疊效果等。

如圖1,Stack作為容器,容器內(nèi)的子元素(子組件)的順序為Item1->Item2->Item3。

圖1 層疊布局

開發(fā)布局

Stack組件為容器組件,容器內(nèi)可包含各種子組件。其中子組件默認(rèn)進(jìn)行居中堆疊。子元素被約束在Stack下,進(jìn)行自己的樣式定義以及排列。

  1. Column(){
  2. Stack({ }) {
  3. Column(){}.width('90%').height('100%').backgroundColor('#ff58b87c')
  4. Text('text').width('60%').height('60%').backgroundColor('#ffc3f6aa')
  5. Button('button').width('30%').height('30%').backgroundColor('#ff8ff3eb').fontColor('#000')
  6. }.width('100%').height(150).margin({ top: 50 })
  7. }

對齊方式

Stack組件通過alignContent參數(shù)實現(xiàn)位置的相對移動。如圖2所示,支持九種對齊方式。

圖2 Stack容器內(nèi)元素的對齊方式

Z序控制

Stack容器中兄弟組件顯示層級關(guān)系可以通過Z序控制的zIndex屬性改變。zIndex值越大,顯示層級越高,即zIndex值大的組件會覆蓋在zIndex值小的組件上方。

在層疊布局中,如果后面子元素尺寸大于前面子元素尺寸,則前面子元素完全隱藏。
  1. Stack({ alignContent: Alignment.BottomStart }) {
  2. Column() {
  3. Text('Stack子元素1').textAlign(TextAlign.End).fontSize(20)
  4. }.width(100).height(100).backgroundColor(0xffd306)
  5. Column() {
  6. Text('Stack子元素2').fontSize(20)
  7. }.width(150).height(150).backgroundColor(Color.Pink)
  8. Column() {
  9. Text('Stack子元素3').fontSize(20)
  10. }.width(200).height(200).backgroundColor(Color.Grey)
  11. }.margin({ top: 100 }).width(350).height(350).backgroundColor(0xe0e0e0)

上圖中,最后的子元素3的尺寸大于前面的所有子元素,所以,前面兩個元素完全隱藏。改變子元素1,子元素2的zIndex屬性后,可以將元素展示出來。

  1. Stack({ alignContent: Alignment.BottomStart }) {
  2. Column() {
  3. Text('Stack子元素1').fontSize(20)
  4. }.width(100).height(100).backgroundColor(0xffd306).zIndex(2)
  5. Column() {
  6. Text('Stack子元素2').fontSize(20)
  7. }.width(150).height(150).backgroundColor(Color.Pink).zIndex(1)
  8. Column() {
  9. Text('Stack子元素3').fontSize(20)
  10. }.width(200).height(200).backgroundColor(Color.Grey)
  11. }.margin({ top: 100 }).width(350).height(350).backgroundColor(0xe0e0e0)

場景示例

使用層疊布局快速搭建手機(jī)頁面顯示模型。

  1. @Entry
  2. @Component
  3. struct StackSample {
  4. private arr: string[] = ['APP1', 'APP2', 'APP3', 'APP4', 'APP5', 'APP6', 'APP7', 'APP8'];
  5. build() {
  6. Stack({ alignContent: Alignment.Bottom }) {
  7. Flex({ wrap: FlexWrap.Wrap }) {
  8. ForEach(this.arr, (item) => {
  9. Text(item)
  10. .width(100)
  11. .height(100)
  12. .fontSize(16)
  13. .margin(10)
  14. .textAlign(TextAlign.Center)
  15. .borderRadius(10)
  16. .backgroundColor(0xFFFFFF)
  17. }, item => item)
  18. }.width('100%').height('100%')
  19. Flex({ justifyContent: FlexAlign.SpaceAround, alignItems: ItemAlign.Center }) {
  20. Text('聯(lián)系人').fontSize(16)
  21. Text('設(shè)置').fontSize(16)
  22. Text('短信').fontSize(16)
  23. }
  24. .width('50%')
  25. .height(50)
  26. .backgroundColor('#16302e2e')
  27. .margin({ bottom: 15 })
  28. .borderRadius(15)
  29. }.width('100%').height('100%').backgroundColor('#CFD0CF')
  30. }
  31. }

以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號