gpt4 book ai didi

android - Xamarin Forms - Webview 没有出现在我的 StackLayout 中

转载 作者:行者123 更新时间:2023-11-29 17:18:38 25 4
gpt4 key购买 nike

为什么 WebView 不显示?我已经尝试了 FillAndExpandCenterAndExpand ,但仍然无法正常工作!

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:views="clr-namespace:MyApp.Views;assembly=MyApp"
x:Class="MyApp.Pages.Main">
<StackLayout>
<StackLayout Orientation="Horizontal" VerticalOptions="Start">
<!-- top controls -->
</StackLayout>

<StackLayout x:Name="WebViewLayout" VerticalOptions="CenterAndExpand">
<WebView Source="https://www.google.com/" VerticalOptions="CenterAndExpand" HorizontalOptions="FillAndExpand"/>
</StackLayout>

<StackLayout Orientation="Horizontal" VerticalOptions="End">
<views:AdMobView WidthRequest="400" HeightRequest="50" />
</StackLayout>
</StackLayout>


</ContentPage>

最佳答案

将 StackLayout(包含 WebView)的垂直选项从 CenterAndExpand 更改为 FillAndExpand 和 WebView 本身。

希望对您有所帮助。 :)

<StackLayout x:Name="WebViewLayout" VerticalOptions="FillAndExpand">
<WebView Source="https://www.google.com/" VerticalOptions = "FillAndExpand"/>
</StackLayout>

关于android - Xamarin Forms - Webview 没有出现在我的 StackLayout 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37621609/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com