如何使用 Xamarin.forms 打开我的 Android 本机应用程序?
How to open my Android native application with Xamarin.forms?
我一直在使用 Android Studio 开发 Android 应用程序,现在我需要能够在 Visual Studio 中使用 Xamarin.forms 打开它(这是一项任务这是我老师给我的,这是因为一位同学一直在创建 iOS 版本,现在我们将它们合并为一个项目)。
我不得不说我是一个菜鸟,一直在寻找一些关于依赖服务和其他内容的教程,但似乎没有完全涵盖我正在寻找的内容(或者,至少,不够清楚)。
如果您有准确的视频来简单说明如何执行此操作,请与我分享。
感谢您的宝贵时间,祝您度过愉快的一天:)
在当前版本的 Visual Srudio 中不可能。
Xamain 中的每个文件都与 Native Android 不同。 Java
代码不能直接复制到 Xamarin 中使用,你应该将它们翻译成 C#
.
查看此文档:Porting Java to C# for Xamarin.Android .
There are two ways to port Java code to C#. The first way is to port the code manually. ..The second porting methodology is to try and automate the process by using a code converter...There is often a non-trivial amount of work involved with bootstrapping an automated code conversion tool, and this may prove to be a barrier to use. In many cases, it may be simpler and easier to port Java to C# by hand.
我一直在使用 Android Studio 开发 Android 应用程序,现在我需要能够在 Visual Studio 中使用 Xamarin.forms 打开它(这是一项任务这是我老师给我的,这是因为一位同学一直在创建 iOS 版本,现在我们将它们合并为一个项目)。
我不得不说我是一个菜鸟,一直在寻找一些关于依赖服务和其他内容的教程,但似乎没有完全涵盖我正在寻找的内容(或者,至少,不够清楚)。
如果您有准确的视频来简单说明如何执行此操作,请与我分享。
感谢您的宝贵时间,祝您度过愉快的一天:)
在当前版本的 Visual Srudio 中不可能。
Xamain 中的每个文件都与 Native Android 不同。 Java
代码不能直接复制到 Xamarin 中使用,你应该将它们翻译成 C#
.
查看此文档:Porting Java to C# for Xamarin.Android .
There are two ways to port Java code to C#. The first way is to port the code manually. ..The second porting methodology is to try and automate the process by using a code converter...There is often a non-trivial amount of work involved with bootstrapping an automated code conversion tool, and this may prove to be a barrier to use. In many cases, it may be simpler and easier to port Java to C# by hand.