【问题标题】:Xamarin Forms, Webview leaves a gap at the top of the ContentXamarin Forms,Webview 在 Content 顶部留下空白
【发布时间】:2019-01-11 07:12:06
【问题描述】:

当我使用 webview 时,它的顶部和底部有间隙,或者如果水平放置,它的侧面有间隙。如何让 webview 填满整个屏幕。

您可以在屏幕截图中看到蓝色区域是内容的背景颜色。为什么 webview 不从顶部开始?

我还在屏幕顶部添加了一个正确分层的标签。

    <?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="WorkingWithWebview.MyPage" >
       <ContentPage.Content>
           <StackLayout VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand">
             <Label Text="this is a label showing its not the nav bar" BackgroundColor="Red"></Label>
             <WebView VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand" 
             Source="https://www.google.com" WidthRequest="1000" HeightRequest="1000">

           </WebView>
        </StackLayout>
    </ContentPage.Content>
</ContentPage>

【问题讨论】:

  • 您使用的是哪个版本的 Xamarin.Forms?你还在为布局做其他事情吗?我没有看到这种行为
  • 试试这个:选项1:设置VerticalOptions="StartAndExpand"WebView或选项2:如果您的主页可能是导航栏空间,则将导航栏的可见性设置为false。
  • 尝试了所有这些,但没有任何区别

标签: android ios webview xamarin.forms


【解决方案1】:
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
        xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
<ContentPage.Content>
    <Grid HorizontalOptions="FillAndExpand"
          VerticalOptions="FillAndExpand">
        <WebView HorizontalOptions="FillAndExpand"
                 VerticalOptions="FillAndExpand">
            <WebView.Source>
                <HtmlWebViewSource Html="{Binding TermsAndConditions}"/>
            </WebView.Source>
        </WebView>
    </Grid>
</ContentPage.Content>

这个设置很适合我 =)

【讨论】:

    【解决方案2】:

    我有同样的问题。如果你为你的应用设置了一个 iOS 故事板,那么差距就会消失。该应用程序的大小将根据启动屏幕或故事板的大小进行调整。什么都没有设置,它会为 iPhone 的大屏幕尺寸留下空隙。

    【讨论】:

      猜你喜欢
      • 2019-03-26
      • 1970-01-01
      • 2023-02-05
      • 1970-01-01
      • 1970-01-01
      • 2016-05-08
      • 2017-06-13
      • 2021-07-14
      • 2014-07-27
      相关资源
      最近更新 更多