我有一个xamarin页面,其中添加了一个webview。 Web视图是用html代码填充的。
第一个问题:除非我将horizonta和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>