W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
層疊布局(StackLayout)用于在屏幕上預(yù)留一塊區(qū)域來顯示組件中的元素,提供元素可以重疊的布局。層疊布局通過Stack容器組件實現(xiàn)位置的固定定位與層疊,容器中的子元素(子組件)依次入棧,后一個子元素覆蓋前一個子元素,子元素可以疊加,也可以設(shè)置位置。
層疊布局具有較強(qiáng)的頁面層疊、位置定位能力,其使用場景有廣告、卡片層疊效果等。
如圖1,Stack作為容器,容器內(nèi)的子元素(子組件)的順序為Item1->Item2->Item3。
- 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')
- }.width('100%').height(150).margin({ top: 50 })
- }
Stack容器中兄弟組件顯示層級關(guān)系可以通過Z序控制的zIndex屬性改變。zIndex值越大,顯示層級越高,即zIndex值大的組件會覆蓋在zIndex值小的組件上方。
- 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)
- }.margin({ top: 100 }).width(350).height(350).backgroundColor(0xe0e0e0)
上圖中,最后的子元素3的尺寸大于前面的所有子元素,所以,前面兩個元素完全隱藏。改變子元素1,子元素2的zIndex屬性后,可以將元素展示出來。
- 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)
- }.margin({ top: 100 }).width(350).height(350).backgroundColor(0xe0e0e0)
使用層疊布局快速搭建手機(jī)頁面顯示模型。
- @Entry
- @Component
- struct StackSample {
- private arr: string[] = ['APP1', 'APP2', 'APP3', 'APP4', 'APP5', 'APP6', 'APP7', 'APP8'];
- build() {
- Stack({ alignContent: Alignment.Bottom }) {
- Flex({ wrap: FlexWrap.Wrap }) {
- ForEach(this.arr, (item) => {
- Text(item)
- .width(100)
- .height(100)
- .fontSize(16)
- .margin(10)
- .textAlign(TextAlign.Center)
- .borderRadius(10)
- .backgroundColor(0xFFFFFF)
- }, item => item)
- }.width('100%').height('100%')
- Flex({ justifyContent: FlexAlign.SpaceAround, alignItems: ItemAlign.Center }) {
- Text('聯(lián)系人').fontSize(16)
- Text('設(shè)置').fontSize(16)
- Text('短信').fontSize(16)
- }
- .width('50%')
- .height(50)
- .backgroundColor('#16302e2e')
- .margin({ bottom: 15 })
- .borderRadius(15)
- }.width('100%').height('100%').backgroundColor('#CFD0CF')
- }
- }
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: