如何在xamarin.form中打开url webview

时间:2018-05-08 10:32:41

标签: xaml xamarin xamarin.forms

我想在启动应用程序时打开此URL(http://localhost:8080/)。请任何人帮助我是xamarin的新手,我的MainPage.xaml是:

<?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:local="clr-namespace:App3"
             x:Class="App3.MainPage">

    <StackLayout>
        <!-- Place new controls here -->
        <Label Text="Welcome to Xamarin.Forms!" 
           HorizontalOptions="Center"
           VerticalOptions="CenterAndExpand" />
        <WebView Source="http://localhost:8080/" VerticalOptions="CenterAndExpand"/>
    </StackLayout>

</ContentPage>

1 个答案:

答案 0 :(得分:0)

您要打开哪个网址?请注意,您设备上的localhost表示您要显示设备上托管的网页。如果您要显示开发计算机上托管的网页,请找出可从您的设备访问的网络地址。它可能以192.168.x.x10.x.x.x开头。