创建一个应用程序以使用xamarin显示现有网站

时间:2017-04-29 17:58:51

标签: c# xamarin

我想创建一个应用来在Android手机中显示网站。我一直在寻找如何做到这一点,我发现Xamarin使用C#。有人知道任何教程或网络,以了解如何做到这一点?

1 个答案:

答案 0 :(得分:3)

您正在寻找一个应用程序内的webview,可以使用Xamarin的两种口味轻松完成,并且有两种教程和示例:

  1. 使用Xamarin.Forms
  2. 教程:https://developer.xamarin.com/guides/xamarin-forms/user-interface/webview/

    Github示例:https://github.com/xamarin/xamarin-forms-samples/tree/master/WorkingWithWebview

    1. 使用Xamarin.Native
    2. 教程:https://developer.xamarin.com/guides/android/user_interface/web_view/