溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

發(fā)布時(shí)間:2020-07-19 14:23:41 來源:網(wǎng)絡(luò) 閱讀:985 作者:powertoolsteam 欄目:開發(fā)技術(shù)


本文翻譯自CodeProject文章:https://www.codeproject.com/Articles/1227733/Xamarin-Notes-Xamarin-Forms-Layouts

轉(zhuǎn)載請注明出處:葡萄城官網(wǎng),葡萄城為開發(fā)者提供專業(yè)的開發(fā)工具、解決方案和服務(wù),賦能開發(fā)者。


在本篇教程中,我們將了解Xamarin.Forms中幾個(gè)常用的Layout類型并介紹使用這幾種布局類似進(jìn)行跨平臺移動開發(fā)時(shí)的示例。

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

StackLayout(棧布局)

StackLayout允許您將視圖以垂直方向堆疊或以水平方向堆疊,這是最常用的布局。查看文檔以獲取更多詳細(xì)信息。

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

<StackLayout>
        <Label x:Name="MainLable"
               HorizontalOptions="Center"
               FontSize="30"
               TextColor="Black"></Label>
    </StackLayout>

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

  • Orientation

設(shè)置 Horizontal 或者 Vertical。默認(rèn)值是Vertical。

<StackLayout Orientation="Horizontal"> or <StackLayout Orientation="Vertical">
  • LayoutOptions定位

視圖可以根據(jù)相對于布局的視圖位置設(shè)置為 VerticalOptions 或者 HorizontalOptions ,在這一部分我們中,我們將描述如何使用StackLayout面板將視圖組裝到水平或垂直堆疊中。

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

<StackLayout Orientation="Horizontal">
           <Button x:Name="Button1" Text="Button1" BackgroundColor="Red"></Button>
           <Button x:Name="Button2" Text="Button2" BackgroundColor="Aqua"></Button>
  </StackLayout>

  <StackLayout Orientation="Vertical">
           <Button x:Name="Button1" Text="Button1" BackgroundColor="Red"></Button>
           <Button x:Name="Button2" Text="Button2" BackgroundColor="Aqua"></Button>
  </StackLayout>

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

在我們的示例中,我們將兩個(gè)按鈕組合成一個(gè)水平堆疊效果(如第一張圖片所示)。

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

VerticalOptions 以及 HorizontalOptions 使用以下值:

  • Start:該選項(xiàng)將View放置在布局的起始位置。

  • End:該選項(xiàng)和Start剛好相反,將View放置在布局的結(jié)束位置。

  • Fill:該選項(xiàng)將View撐滿布局,不留白。

  • Center:該選項(xiàng)將視圖放置在布局的正中。

視圖是如何在父視圖中對齊的?

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

<StackLayout>
        <Label HorizontalOptions="Start" BackgroundColor="Blue" Text="Start"></Label>
         <Label HorizontalOptions="End" BackgroundColor="Red" Text="End"></Label>
         <Label HorizontalOptions="Center" BackgroundColor="Yellow" Text="Center"></Label>
         <Label HorizontalOptions="Fill" BackgroundColor="Green" Text="Fill"></Label>
</StackLayout>

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

用C#代碼設(shè)置如下

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

var stack = new StackLayout();
        var labelStart = new Label()
        {
            HorizontalOptions = LayoutOptions.Start,
            BackgroundColor = Color.Blue,
            Text = "Start"
        };
        var labelEnd = new Label()
        {
          HorizontalOptions = LayoutOptions.End,
          BackgroundColor = Color.Red,
          Text = "End"
        };
        var labelCenter = new Label()
       {
        HorizontalOptions = LayoutOptions.Center,
        BackgroundColor = Color.Yellow,
        Text = "Center"
        };
          var labelFill = new Label()
      {

    HorizontalOptions = LayoutOptions.Fill,

    BackgroundColor = Color.Green,

    Text = "Fill"

};

stack.Children.Add(labelStart);

stack.Children.Add(labelEnd);

stack.Children.Add(labelCenter);

        stack.Children.Add(labelFill);

Content = stack;

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

<StackLayout Orientation="Vertical">

          <Label HeightRequest="100" BackgroundColor="Blue" Text="One"/>

            <Label HeightRequest="50" BackgroundColor="Red" Text="Two"/>

           <Label HeightRequest="200" BackgroundColor="Yellow" Text="Three"/>

</StackLayout>

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

var stack = new StackLayout()
    {
        Orientation = StackOrientation.Vertical
    };
    var labelOne = new Label()
    {
        HeightRequest = 100,
        BackgroundColor = Color.Blue,
        Text = "One"
    };
    var labelTwo = new Label()
    {
        HeightRequest = 50,
        BackgroundColor = Color.Red,
        Text = "Two"
    };
    var labelThree = new Label()
    {
        HeightRequest = 200,
        BackgroundColor = Color.Yellow,
        Text = "Three"
    };

    stack.Children.Add(labelOne);
    stack.Children.Add(labelTwo);
    stack.Children.Add(labelThree);
    Content = stack;

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

  • Spacing

可以設(shè)置為整數(shù)或者小數(shù)。

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

<StackLayout Orientation="Vertical" BackgroundColor="Gray">

            <StackLayout Orientation="Horizontal">

                <Label  BackgroundColor="Blue" Text="Start"></Label>

                <Label BackgroundColor="Red" Text="End"></Label>

                <Label BackgroundColor="Yellow" Text="Center"></Label>

            </StackLayout>

            <StackLayout Orientation="Vertical" BackgroundColor="DarkBlue">

                <Button x:Name="Button1" Text="Button1" BackgroundColor="Red"></Button>

                <Button x:Name="Button2" Text="Button2" BackgroundColor="Aqua"></Button>

            </StackLayout>

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

如果我們在第一個(gè)StackLayout設(shè)置了Spacing:

<StackLayout Orientation="Horizontal" Spacing="-6"> or 

<StackLayout Orientation="Horizontal" Spacing="0">

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

  • Padding 和 Margin

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

以下是一個(gè)示例:

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

 <StackLayout Orientation="Vertical" BackgroundColor="Gray" >

            <StackLayout Orientation="Horizontal" Spacing="10" Padding="50,20,100,150">

                <Label  BackgroundColor="Blue" Text="Start"></Label>

                <Label BackgroundColor="Red" Text="End"></Label>

                <Label BackgroundColor="Yellow" Text="Center"></Label>

            </StackLayout>

            <StackLayout Orientation="Vertical" BackgroundColor="DarkBlue" Spacing="50">

                <Button x:Name="Button1" Text="Button1" BackgroundColor="Red"></Button>

                <Button x:Name="Button2" Text="Button2" BackgroundColor="Aqua"></Button>

            </StackLayout>

</StackLayout>

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

AbsoluteLayout(絕對布局)

AbsoluteLayou允許你在指定的絕對位置放置子元素。

有時(shí),你可能希望更多地控制屏幕上某個(gè)對象的位置,比如說,你希望將它們錨定到屏幕的邊緣,或者希望覆蓋住多個(gè)元素。

在AbsoluteLayou中,我們會使用最重要的四個(gè)值以及八個(gè)設(shè)置選項(xiàng)。

四個(gè)值是由X、Y、Width、Height組成,通過這四個(gè)值可以為你的布局進(jìn)行定位,它們中的每一個(gè)都可以被設(shè)置為比例值或絕對值。

可以是絕對值(以像素為單位)或者比例值(從0到1)

  • 位置:

    •   X:視圖錨定位置的水平位置。

    •   Y:視圖錨定位置的垂直位置。

  • 尺寸:

    •   Width:定義當(dāng)前視圖的寬度。

    •   Height:定義當(dāng)前視圖的高度。

值被指定為邊界和一個(gè)標(biāo)志的組合。LayoutBounds是由四個(gè)值組成的矩形:x,y,寬度和高度。

設(shè)置選項(xiàng)

可以是絕對值A(chǔ)bsolute標(biāo)志(以像素為單位)或者比例值Proportional標(biāo)志(從0到1)

  • None:全部的數(shù)值是絕對值(數(shù)值以像素為單位)。

  • All:表示布局邊界的全部數(shù)值均表示一個(gè)比例值(數(shù)值從0到1)。

  • WidthProportional:表示寬度是比例值,而其它的數(shù)值以絕對值表示。

  • HeightProportional:表示高度是比例值,而其它的數(shù)值以絕對值表示。

  • XProportional:表示X坐標(biāo)值是比例值,而將其它的數(shù)值作為絕對值對待。

  • YProportional:表示Y坐標(biāo)值是比例值,而將其它的數(shù)值作為絕對值對待。

  • PositionProportional:表示X和Y的坐標(biāo)值是比例值,而將表示尺寸的數(shù)值作為絕對值表示。

  • SizeProportional:表示W(wǎng)idth和Height的值是比例值,而表示位置的數(shù)值是絕對值。

更多詳細(xì)內(nèi)容請參見本鏈接。

結(jié)構(gòu):

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

<AbsoluteLayout>

      <BoxView Color="Olive"

               AbsoluteLayout.LayoutBounds="X, Y, Width, Height"

               AbsoluteLayout.LayoutFlags="FlagsValue" />

  </AbsoluteLayout>

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

Proportional 比例示例 1

<BoxView Color="Blue"

                 AbsoluteLayout.LayoutBounds="0, 0, 0.1, 0.5"

                 AbsoluteLayout.LayoutFlags="All" />

Proportional 比例示例 2

<BoxView Color="Blue"

               AbsoluteLayout.LayoutBounds="0, 0, 1, 0.5"

               AbsoluteLayout.LayoutFlags="All" />

Absolute 絕對值示例 1

<BoxView Color="Blue"

                   AbsoluteLayout.LayoutBounds="0, 75, 250, 410"

                   AbsoluteLayout.LayoutFlags="None" />

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

RelativeLayout(相對布局)

RelativeLayout使用約束來對子視圖進(jìn)行布局。更多詳細(xì)信息請參見此鏈接。

與AbsoluteLayout類似,在使用RelativeLayout時(shí),我們可以將元素疊加在一起,但是它比AbsoluteLayout更加強(qiáng)大,因?yàn)槟憧梢詫⑾鄬τ诹硪粋€(gè)元素的位置或大小的約束應(yīng)用于一個(gè)元素。它提供了與元素位置和大小相關(guān)的更多控制。

以下是一個(gè)示例:

約束
  • Type:它定義了約束是相對于父還是另一個(gè)視圖,我們可以使用以下值:RelativeToParent或Constant或RelativeToView。

  • Property:它定義了我們需要使用哪個(gè)屬性作為約束的基礎(chǔ)。它的值可以是Width或Height或者X再或者Y。

  • Factor:被用來應(yīng)用屬性的值,該值是一個(gè)小數(shù),介于0和1之間,可以寫成0.5e5的格式。

  • Constant:可以被用作指示一個(gè)偏移量的值。

  • ElementName:該約束相對于的視圖的名稱,如果我們使用關(guān)聯(lián)到某個(gè)視圖的約束關(guān)系的話。

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

<ScrollView>
            <RelativeLayout>
 
                <BoxView Color="Gray" HeightRequest="200" 

                    RelativeLayout.WidthConstraint="{ConstraintExpression 
                    Type=RelativeToParent,
                    Property=Width,
                    Factor=1}" />
 
                <Button BorderRadius="35" 

                        x:Name="ImageCircleBack" 

                        BackgroundColor="Blue" 

                        HeightRequest="70" WidthRequest="70" 

                        RelativeLayout.XConstraint="{ConstraintExpression Type=RelativeToParent, Property=Width, Factor=.5, Constant = -35}" 

                        RelativeLayout.YConstraint="{ConstraintExpression Type=RelativeToParent, Factor=0, Property=Y, Constant=70}" />
             <Label Text="Hamida REBA?" FontAttributes="Bold" FontSize="26" HorizontalTextAlignment="Center" 

                       RelativeLayout.YConstraint="{ConstraintExpression Type=RelativeToParent, Property=Y, Factor=0, Constant=140}" 

                       RelativeLayout.WidthConstraint="{ConstraintExpression Type=RelativeToParent, Property=Width, Factor=1}" />
            </RelativeLayout>
        </ScrollView>

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

我們可以得到以下結(jié)果:

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

Grid(網(wǎng)格布局)

Grid和一個(gè)表格一樣。它比StackLayout更加通用,提供列和行兩個(gè)維度以供輔助定位。在不同行之間對齊視圖也很容易。實(shí)際使用起來與WPF的Grid非常類似甚至說沒什么區(qū)別。

在這一部分,我們將學(xué)習(xí)如何創(chuàng)建一個(gè)Grid并指定行和列。

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

<Grid>
            <Grid.RowDefinitions>
                <RowDefinition/>
                <RowDefinition/>
                <RowDefinition/>
                <RowDefinition/>
                <RowDefinition/>
                <RowDefinition/>
            </Grid.RowDefinitions>
            <Grid.ColumnDefinitions>
                <ColumnDefinition/>
                <ColumnDefinition/>
                <ColumnDefinition/>
                <ColumnDefinition/>
            </Grid.ColumnDefinitions>
 
            <Button Text="7" Grid.Row="1" Grid.Column="0"

       BackgroundColor="White" TextColor="Black"

       FontSize="36" BorderRadius="0" />
            <Button Text="8" Grid.Row="1" Grid.Column="1"

       BackgroundColor="White" TextColor="Black"

       FontSize="36" BorderRadius="0" />
            <Button Text="9" Grid.Row="1" Grid.Column="2"

       BackgroundColor="White" TextColor="Black"

       FontSize="36" BorderRadius="0" />
 
            <Button Text="4" Grid.Row="2" Grid.Column="0"

       BackgroundColor="White" TextColor="Black"

       FontSize="36" BorderRadius="0" />
            <Button Text="5" Grid.Row="2" Grid.Column="1"

       BackgroundColor="White" TextColor="Black"

       FontSize="36" BorderRadius="0" />
            <Button Text="6" Grid.Row="2" Grid.Column="2"

       BackgroundColor="White" TextColor="Black"

       FontSize="36" BorderRadius="0" />
 
            <Button Text="1" Grid.Row="3" Grid.Column="0"

       BackgroundColor="White" TextColor="Black"

       FontSize="36" BorderRadius="0" />
            <Button Text="2" Grid.Row="3" Grid.Column="1"

       BackgroundColor="White" TextColor="Black"

       FontSize="36" BorderRadius="0" />
            <Button Text="3" Grid.Row="3" Grid.Column="2"

       BackgroundColor="White" TextColor="Black"

       FontSize="36" BorderRadius="0" />
            <Button Text="0" Grid.Row="4" Grid.Column="0" Grid.ColumnSpan="3"

       BackgroundColor="White" TextColor="Black"

       FontSize="36" BorderRadius="0" />
 
            <Button Text="/" Grid.Row="1" Grid.Column="3"

        BackgroundColor="#FFA500" TextColor="White"

        FontSize="36" BorderRadius="0" />
            <Button Text="X" Grid.Row="2" Grid.Column="3"

        BackgroundColor="#0000ff" TextColor="White"

        FontSize="36" BorderRadius="0" />
            <Button Text="-" Grid.Row="3" Grid.Column="3"

        BackgroundColor="#8000ff" TextColor="White"

        FontSize="36" BorderRadius="0" />
            <Button Text="+" Grid.Row="4" Grid.Column="3"

        BackgroundColor="#0080ff" TextColor="White"

        FontSize="36" BorderRadius="0" />
 
            <Button Text="C" Grid.Row="5" Grid.Column="0"

        BackgroundColor="#808080" TextColor="White"

        FontSize="36" BorderRadius="0" />
 
            <Button Text="=" Grid.Row="5" Grid.Column="1" Grid.ColumnSpan="3"

        BackgroundColor="#000066" TextColor="White"

        FontSize="36" BorderRadius="0" />
 
</Grid>

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

我們首先在Grid中使用這些標(biāo)記定義行數(shù)和列數(shù)。

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

<Grid.RowDefinitions>

     <RowDefinition/>

     <RowDefinition/>

     <RowDefinition/>

     <RowDefinition/>

     <RowDefinition/>

     <RowDefinition/>

</Grid.RowDefinitions>

<Grid.ColumnDefinitions>

     <ColumnDefinition/>

     <ColumnDefinition/>

     <ColumnDefinition/>

     <ColumnDefinition/>

</Grid.ColumnDefinitions>

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

在此之后,我們將在其中排布視圖

例如:

<Button Text="7" Grid.Row="1" Grid.Column="0" BackgroundColor="White" TextColor="Black" FontSize="36" BorderRadius="0" />

該按鈕將被放置在第二行(Grid.Row="1")第一列(Grid.Column="0")。

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

使用Height屬性定義行的高度:

<Grid.RowDefinitions>

  <RowDefinition Height="Auto" />

該值可以是Auto或者100或者星號(*),我們可以指定2*(甚至n*)。

使用Width屬性定義列的寬度:

<Grid.ColumnDefinitions>

                <ColumnDefinition Width="*"/>

該值可以是Auto或者100或者星號(*),我們可以指定2*(甚至n*)。

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

<Grid>
            <Grid.RowDefinitions>
                <RowDefinition Height="Auto" />
                <RowDefinition Height="*" />
                <RowDefinition Height="100" />
            </Grid.RowDefinitions>
            <Grid.ColumnDefinitions>
                <ColumnDefinition Width="*"/>
                <ColumnDefinition Width="2*"/>
            </Grid.ColumnDefinitions>
            <Label Grid.Column="0" Grid.Row="0" Text="1" BackgroundColor="Red" ></Label>
            <Label Grid.Column="1" Grid.Row="0" Text="2" BackgroundColor="Red"></Label>
            <Label Grid.Column="0" Grid.Row="1" Text="3" BackgroundColor="Red"></Label>
            <Label Grid.Column="1" Grid.Row="1" Text="4" BackgroundColor="Red"></Label>
            <Label Grid.Column="0" Grid.Row="2" Text="5" BackgroundColor="Red"></Label>
            <Label Grid.Column="1" Grid.Row="2" Text="6" BackgroundColor="Red"></Label>
        </Grid>

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

ScrollView

ScrollView是一個(gè)可以滾動的內(nèi)容。

如果不使用ScrollView:

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

<StackLayout>
            <BoxView Color="Blue" HeightRequest="200"/>
            <BoxView Color="Green" HeightRequest="200"/>
            <BoxView Color="Firebrick" HeightRequest="200"/>
            <BoxView Color="YellowGreen" HeightRequest="300"/>
</StackLayout>

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

在以上示例中,顏色為Yellow Green的BoxView將不顯示,然后我們向其中添加一個(gè)ScrollView,通過滾動,我們就可以看到全部的內(nèi)容。ScrollView將向界面UI添加一個(gè)滾動指示器。當(dāng)我們需要指定水平滾動或者垂直滾動,再或者雙向滾動時(shí),我們可以使用到Orientation屬性。

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

<ScrollView Orientation="Horizontal"> or <ScrollView Orientation="Vertical"> or <ScrollView Orientation="Both">

<ScrollView>

            <StackLayout>

                <BoxView Color="Blue" HeightRequest="200"/>

                <BoxView Color="Green" HeightRequest="200"/>

                <BoxView Color="Firebrick" HeightRequest="200"/>

                <BoxView Color="YellowGreen" HeightRequest="300"/>

</StackLayout>

</ScrollView>

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

Xamarin 學(xué)習(xí)筆記 - Layout(布局)

更多詳細(xì)信息,請參見此鏈接。

ScrollView通常被用來顯示一個(gè)列表(ListView)。

下篇文章我們將說一說Page(頁面)相關(guān)的內(nèi)容。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI