0
私のコンテンツには、 'StackLayout'が固定されていて、4 'ボタンが含まれる場所に浮かれています。フローティングStackLayout xamarinフォーム
マイレイアウトGrid
は次のように、同一の行と列の項目を配置することによって、他のものの上にものを浮遊することができる瞬間
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
Title="teste">
<Grid>
<ScrollView BackgroundColor="#ffffff" Padding="15" Grid.Row="0">
<StackLayout HorizontalOptions="Fill" VerticalOptions="FillAndExpand">
<Label Text="{Binding Titulo}" VerticalTextAlignment="Center" HorizontalTextAlignment="Center" TextColor="#38B6AB" FontSize="22" FontAttributes="Bold"/>
<Label Text="{Binding Data}" VerticalTextAlignment="Center" HorizontalTextAlignment="Center" TextColor="#5a5a5a" FontSize="18" FontAttributes="Bold"/>
<Image x:Name="imagen1" Source="{Binding ImageSource}" Aspect="AspectFit">
<Image.GestureRecognizers>
<TapGestureRecognizer
Tapped="OnTapped" />
</Image.GestureRecognizers>
</Image>
</StackLayout>
</ScrollView>
</Grid>
//-----Floating button----- //
2のエラーは、ボタンがscrowviewを移動する方法、他のエラーが存在しない、すべてのコンテンツを取るとボタンが –
ホセ@あなたが場所を指定していない、中央に正確であるとフッタに表示されますあなたは 'ボタン'を望んでいた。これは、それを行う方法を示す出発点に過ぎません。あなたが欲しいと望むまで、それを微調整してください。それは解決策に欠けるものではありませんが、それを行う方法を学ぶのを助けるためのものです。あなたが好きな方法でそれらを配置するのに問題がある場合は、私に知らせるか、新しい質問を投稿してください、 – hvaughan3
いいえ、私は位置を特定するのが難しいです、私は別の質問を開きます –