Xamarin 學習筆記 - Layout(佈局)

来源:https://www.cnblogs.com/powertoolsteam/archive/2018/07/18/9329222.html
-Advertisement-
Play Games

在本篇教程中,我們將瞭解Xamarin.Forms中幾個常用的Layout類型並介紹使用這幾種佈局類似進行跨平臺移動開發時的示例。 ...


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

轉載請註明出處:葡萄城官網,葡萄城為開發者提供專業的開發工具、解決方案和服務,賦能開發者。

 

在本篇教程中,我們將瞭解Xamarin.Forms中幾個常用的Layout類型並介紹使用這幾種佈局類似進行跨平臺移動開發時的示例。

 

StackLayout(棧佈局)

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

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

設置 Horizontal 或者 Vertical。預設值是Vertical。

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

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

<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>

 

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

VerticalOptions 以及 HorizontalOptions 使用以下值:

  • Start:該選項將View放置在佈局的起始位置。
  • End:該選項和Start剛好相反,將View放置在佈局的結束位置。
  • Fill:該選項將View撐滿佈局,不留白。
  • Center:該選項將視圖放置在佈局的正中。

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

<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>

用C#代碼設置如下

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;

<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>

 

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;
  • Spacing

可以設置為整數或者小數。

<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>

如果我們在第一個StackLayout設置了Spacing:

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

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

  • Padding 和 Margin

以下是一個示例:

 <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>

AbsoluteLayout(絕對佈局)

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

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

在AbsoluteLayou中,我們會使用最重要的四個值以及八個設置選項。

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

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

  • 位置:
    •   X:視圖錨定位置的水平位置。
    •   Y:視圖錨定位置的垂直位置。
  • 尺寸:
    •   Width:定義當前視圖的寬度。
    •   Height:定義當前視圖的高度。

值被指定為邊界和一個標誌的組合。LayoutBounds是由四個值組成的矩形:x,y,寬度和高度。

設置選項

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

  • None:全部的數值是絕對值(數值以像素為單位)。
  • All:表示佈局邊界的全部數值均表示一個比例值(數值從0到1)。
  • WidthProportional:表示寬度是比例值,而其它的數值以絕對值表示。
  • HeightProportional:表示高度是比例值,而其它的數值以絕對值表示。
  • XProportional:表示X坐標值是比例值,而將其它的數值作為絕對值對待。
  • YProportional:表示Y坐標值是比例值,而將其它的數值作為絕對值對待。
  • PositionProportional:表示X和Y的坐標值是比例值,而將表示尺寸的數值作為絕對值表示。
  • SizeProportional:表示Width和Height的值是比例值,而表示位置的數值是絕對值。

更多詳細內容請參見本鏈接

結構:

<AbsoluteLayout>

      <BoxView Color="Olive"

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

               AbsoluteLayout.LayoutFlags="FlagsValue" />

  </AbsoluteLayout>

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" />

RelativeLayout(相對佈局)

 

RelativeLayout使用約束來對子視圖進行佈局。更多詳細信息請參見此鏈接

與AbsoluteLayout類似,在使用RelativeLayout時,我們可以將元素疊加在一起,但是它比AbsoluteLayout更加強大,因為你可以將相對於另一個元素的位置或大小的約束應用於一個元素。它提供了與元素位置和大小相關的更多控制。

以下是一個示例:

約束

  • Type:它定義了約束是相對於父還是另一個視圖,我們可以使用以下值:RelativeToParent或Constant或RelativeToView。
  • Property:它定義了我們需要使用哪個屬性作為約束的基礎。它的值可以是Width或Height或者X再或者Y。
  • Factor:被用來應用屬性的值,該值是一個小數,介於0和1之間,可以寫成0.5e5的格式。
  • Constant:可以被用作指示一個偏移量的值。
  • ElementName:該約束相對於的視圖的名稱,如果我們使用關聯到某個視圖的約束關係的話。

 

<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>

我們可以得到以下結果:

 

Grid(網格佈局)

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

在這一部分,我們將學習如何創建一個Grid並指定行和列。

 

<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>

我們首先在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" />

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

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

<Grid.RowDefinitions>

  <RowDefinition Height="Auto" />

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

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

<Grid.ColumnDefinitions>

                <ColumnDefinition Width="*"/>

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

 

<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>

ScrollView

ScrollView是一個可以滾動的內容。

如果不使用ScrollView:

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

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

 

<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>

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 在SQL Server 2012(11.0.7001.0)下麵在還原一個資料庫(備份文件40多G大小,實際資料庫大小300G),在還原過程中,出現一直等待ASYNC_IO_COMPLETION,如下測試截圖所示,已經等待了72分鐘了,但是還原比例依然為0% SELECT r.session_id ,... ...
  • 第一:hbase介紹 hbase是一個構建在hdfs上的分散式列存儲系統; hbase是apache hadoop生態系統中的重要一員,主要用於海量結構化數據存儲 從邏輯上講,hbase將數據按照表、行和列進行存儲 1.大:一個表可以有數十億行,上百萬列; 2.無模式:每行都有一個可排序的主鍵和任意 ...
  • MySQL 8.0開始支持原子數據定義語言(DDL)語句。此功能稱為原子DDL。原子DDL語句將與DDL操作關聯的數據字典更新,存儲引擎操作和二進位日誌寫入組合到單個原子事務中。即使伺服器在操作期間暫停,也會提交事務,並將適用的更改保留到數據字典,存儲引擎和二進位日誌,或者回滾事務。 通過在MySQ ...
  • LeakCanary是檢測App記憶體泄露的工具, 記憶體泄露是Android開發中常見的問題, 使用程式的穩定性下降. LeakCanary 的機制如下: RefWatcher.watch() 會以監控對象來創建一個 KeyedWeakReference 弱引用對象 在 AndroidWatchExe ...
  • 簡單排序(選擇排序、直接插入排序、冒泡排序)演算法都是n^2量級的比較(n是元素個數) 選擇排序動態圖: 直接插入排序動態圖: 冒泡排序動態圖: ...
  • 想要瞭解 HandlerThread 的工作原理需要先對 Android 系統中以 Handler、Looper、MessageQueue 組成的非同步消息處理機制有所瞭解,如果你還沒有這方面的知識,可以先看我寫的另一篇文章: "Handler、Looper與MessageQueue源碼解析" 一、概 ...
  • 1.編寫高質量iOS與OS X代碼的52個有效方法 (Effective Objective-C 2.0) 這本書介紹了一些OC的語法技巧,runtime,記憶體管理等方面的知識.書已買,準備入手. 2.iOS與OS X多線程和記憶體管理(Pro Multithreading and Memory Ma ...
  • 在實際的項目開發中,我們會碰到某些靜態庫只能在真機或者模擬器中的一個上可以運行。為了讓靜態庫在模擬器和真機都可以正常的運行,就涉及到如何把一個工程生成的靜態庫打包以後生成的framework進行合併。下麵簡單介紹下合併的過程。 首先,說一下靜態庫的打包 在Xcode頂部,選中工程,點擊列表中的Edi ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...