Xamarin表单的Webview不会自动调整大小

时间:2019-05-21 13:44:12

标签: xamarin.forms webview

我有一个xamarin页面,其中添加了一个webview。 Web视图是用html代码填充的。

第一个问题:除非我将horizo​​nta和vertical选项设置为fillandexpand,否则webview不会显示。

第二个问题:考虑到我必须设置hor / vert-option,因此视图无法调整大小以适合内容。

针对此基本问题的任何建议,而不必为每个平台创建自定义渲染器。

<ContentPage.Content>
    <ScrollView>
        <StackLayout x:Name="MainLayout" Orientation="Vertical">
            <WebView x:Name="Question"  HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" BackgroundColor="red" ></WebView>
            <StackLayout x:Name="TilesLayout" Orientation="Vertical"></StackLayout>
        </StackLayout>
    </ScrollView>
</ContentPage.Content>

0 个答案:

没有答案