我需要根据设备大小在网格中插入适合的背景。 我尝试了一千种组合,但仍然很小,或者不适合所有。 在下面的图片中,您可以看到红色圆圈图像,我必须适应网格,网格位于底部屏幕的后半部分。
我试图将图像放入网格中,图像有x:Name =" backgroundImage",我必须适应下半场整个网格的对象是什么屏幕上,我该怎么办?这是代码:
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Fimap.Login"
BackgroundColor="#333">
<ContentPage.Padding>
<OnPlatform x:TypeArguments="Thickness"
iOS="0,0,0,0"
Android="0,0,0,0"
WinPhone="0,0,0,0" />
</ContentPage.Padding>
<ContentPage.Content>
<ScrollView>
<StackLayout VerticalOptions="Center" HorizontalOptions="CenterAndExpand" Orientation="Vertical" Spacing="0">
<ActivityIndicator x:Name="loadingBeforeLogin" IsVisible="true" Color="#008ECC" IsRunning="true" />
</StackLayout>
<RelativeLayout VerticalOptions="Center" HorizontalOptions="CenterAndExpand" x:Name="allContent">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="5*"></RowDefinition>
<RowDefinition Height="5*"></RowDefinition>
</Grid.RowDefinitions>
<!-- immagini loghi e scritta login sopra-->
<Grid Grid.Row="0" BackgroundColor="#1f2429">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="2*"></ColumnDefinition>
<ColumnDefinition Width="6*"></ColumnDefinition>
<ColumnDefinition Width="2*"></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions Height="*">
<RowDefinition Height="2*"></RowDefinition>
<RowDefinition Height="6*"></RowDefinition>
</Grid.RowDefinitions>
<Image Aspect="AspectFit" x:Name="logoScritta" Grid.Row="0" Grid.Column="1" Source="Images/fimaLogoLogin.png"></Image>
<Image Aspect="AspectFit" x:Name="logo" Grid.Row="1" Grid.Column="1" Source="Images/logo.png"></Image>
<Label TextColor="#fff" Grid.Row="2" FontSize="22" Grid.Column="1" Text="Login" />
</Grid>
<!-- username e password input e ricorda password -->
<Grid Grid.Row="1">
<Image x:Name="backgroundImage"/>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="2*"></ColumnDefinition>
<ColumnDefinition Width="6*"></ColumnDefinition>
<ColumnDefinition Width="2*"></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="1*"></RowDefinition>
<RowDefinition Height="2*"></RowDefinition>
<RowDefinition Height="2*"></RowDefinition>
<RowDefinition Height="2*"></RowDefinition>
<RowDefinition Height="2*"></RowDefinition>
<RowDefinition Height="2*"></RowDefinition>
</Grid.RowDefinitions>
<ActivityIndicator x:Name="loading" Grid.Row="0" Grid.Column="1" IsVisible="false" Color="#008ECC" IsRunning="true" />
<Label TextColor="#2196F3" Grid.Row="1" Grid.Column="1" Text="" />
<Entry TextColor="#2196F3" PlaceholderColor="#A9D6FA" FontSize="24" Grid.Row="1" Grid.Column="1" Placeholder="Username" x:Name="UsernameEntry" Text="" />
<Label TextColor="#2196F3" Grid.Row="2" Grid.Column="1" Text="" />
<Entry TextColor="#2196F3" PlaceholderColor="#A9D6FA" FontSize="24" Grid.Row="2" Grid.Column="1" Placeholder="Password" IsPassword="True" x:Name="PasswordEntry" Text="" />
<Button x:Name="LoginButton" FontSize="22" Grid.Row="3" Grid.Column="1" Text="Accedi" Clicked="Login_OnClicked"/>
<Grid Grid.Row="4" Grid.Column="1">
<Grid.RowDefinitions>
<RowDefinition Height="1*"></RowDefinition>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="7*"></ColumnDefinition>
<ColumnDefinition Width="3*"></ColumnDefinition>
</Grid.ColumnDefinitions>
<Label TextColor="#2196F3" Text="Ricorda accesso" Grid.Row="0" Grid.Column="0"></Label>
<Switch x:Name="switchRememberPassword" Grid.Row="0" Grid.Column="1"></Switch>
</Grid>
<Label x:Name="recuperaPassword" Grid.Row="5" Grid.Column="1" TextColor="#2196F3" Text="Hai dimenticato la password?" FontSize="12"></Label>
</Grid>
</Grid>
</RelativeLayout>
</ScrollView>
</ContentPage.Content>
</ContentPage>
解 将codebehind c#中的图像添加到名称相对
的RelativeLayout中Image backgroundImage = new Image();
backgroundImage.Source = "loginBackground.png";
backgroundImage.Aspect = Aspect.AspectFill;
relative.Children.Add(backgroundImage,
Constraint.RelativeToParent((parent) =>
{
backgroundImage.WidthRequest = parent.Width;
return 0;
}),
Constraint.RelativeToParent((parent) =>
{
return parent.Height - backgroundImage.Height;
})
);
答案 0 :(得分:0)
在调用App构造函数之前的iOS项目中:
App.ScreenSize = new Size(UIScreen.MainScreen.Bounds.Width, UIScreen.MainScreen.Bounds.Height);
在PCL的App类中:
public static Size ScreenSize;
简单地说,当给出网格列和行的大小时,你应该使用它:
App.ScreenSize.Width * 1, App.ScreenSize.Height * 1