如何在IOS和Android上在标签或图像下方添加Webview并一起滚动所有元素?

时间:2019-05-09 06:49:48

标签: c# xaml xamarin xamarin.forms webview

我正在为IOS和Android开发Xamarin.Forms应用程序。我在XAML文件中的代码是这样的:

<StackLayout BackgroundColor="White" Padding="1" VerticalOptions="FillAndExpand">
    <Image HeightRequest="150" Aspect="AspectFill" Source="{Binding Post.ImageUrl}" />
    <Label Text="{Binding Post.Title}" VerticalOptions="FillAndExpand" FontFamily="{StaticResource BoldFont}" FontSize="20" />
    <Label Text="{Binding Post.CreatedOn}" VerticalOptions="FillAndExpand" FontFamily="{StaticResource NormalFont}" FontSize="12" />
    <WebView x:Name="WebViewer" HeightRequest="500" VerticalOptions="FillAndExpand" BackgroundColor="White">
        <WebView.Source>
           <HtmlWebViewSource Html="{Binding Post.Data.Content}" />
        </WebView.Source>
    </WebView>
    <Label Text="Comments" FontSize="12" />
</StackLayout>

当我模拟应用程序时,只有Webview Scrolls和所有其他元素保持固定不变。在Stackoverflow上还有另一个类似的问题,但是该解决方案不起作用,也无法回答我关于IOS的问题,它仅针对Android。

This image shows the webview scrolling, and it's siblings staying in place

我希望它们都一起滚动,以便像一页纸一样显示。这应该是一个跨平台的解决方案,所以我只需要为IOS和Android编写一次代码。我该如何实现?

1 个答案:

答案 0 :(得分:1)

您可以尝试类似的事情

设计方面

 <?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="XamarinTest.View.WebViewDemo">
        <ContentPage.Content>
            <ScrollView>
                <StackLayout BackgroundColor="White" Padding="1" VerticalOptions="FillAndExpand">
                    <Image HeightRequest="150" Aspect="AspectFill" Source="home" />
                    <Label Text="Header"  FontSize="20" />
                    <Label Text="Subheader"   FontSize="12" />
                        <WebView  Source="http://www.google.com"   x:Name="WebViewer"  BackgroundColor="White">
                        </WebView>
                    <Label Text="Comments" FontSize="12" />
                </StackLayout>
            </ScrollView>
        </ContentPage.Content>
    </ContentPage>

编码面

using System;
using System.Collections.Generic;

using Xamarin.Forms;

namespace XamarinTest.View
{
    public partial class WebViewDemo : ContentPage
    {
        public WebViewDemo()
        {
            InitializeComponent();
        }
        protected override void OnAppearing()
        {
            base.OnAppearing();

        }

        protected override void OnSizeAllocated(double width, double height)
        {
            base.OnSizeAllocated(width, height);
            WebViewer.HeightRequest = height;
            WebViewer.WidthRequest = width;

        }
    }
}