你会使用Visual Studio进行Android开发吗?

如果是这样,你将如何设置android SDK而不是。net框架,有任何特殊的设置或配置吗?


当前回答

我知道这个q很老了,但它可能对我有用:

http://blogs.nvidia.com/2013/02/nvidia-introduces-nsight-tegra-to-assist-android-developers/

其他回答

如果你有兴趣制作HTML5混合应用程序(包装在本地容器中的web应用程序,可以访问设备功能),Nomad Visual Studio扩展支持android设备的构建。

你可以使用Visual Studio 2015为Android、iOS和Windows构建跨平台应用程序。

开发计划署:https://www.visualstudio.com/en-US/explore/cordova-vs

希望这对你有所帮助!

这取决于你真正想要达到的目标。

你想继续制作普通的基于java的Android应用程序,但使用Visual Studio进行开发?这是个坏消息,因为Visual Studio没有内置的java支持。因此,如果你开箱即用,你将失去所有特定于Java的Eclipse功能(针对Java的智能感知,Java调试器,向导等)以及大量的Android插件(这些插件是特定于Eclipse的,不能与VS一起工作)。

另一方面,你可以使用Mono for Android在VS中的c#中开发应用程序,但它们看起来不会像原生应用程序那样流畅(一些功能可能会丢失,外观和感觉略有不同,等等)。在这种情况下,这类应用的销量可能低于外观和感觉与所有其他Java应用相似的“普通”Java应用。

如果你谈论的是原生Android代码(用C/ c++编写),比如游戏,情况就没那么糟糕了。因为Visual Studio在c++中没有问题,所以有很多方法可以让它工作:

如果你只想编译你的代码,你可以使用免费的vs-android工具集。它本质上是一组构建规则,告诉Visual Studio如何启动Android编译器。 如果你想用Visual Studio编译和调试你的原生代码,你需要一些更高级的东西,比如Android的VisualGDB。它可以独立地构建/调试本机代码,也可以与调试Eclipse中的Java代码一起构建/调试。

微软Visual Studio 2015现在有Android开发选项:c++, Cordova和c# Xamarin。当选择其中一个Android开发选项时,Visual Studio也会安装全新的Visual Studio模拟器,用于调试应用程序。你也可以下载模拟器,而不需要安装Visual Studio。有关详细信息,请参阅

视觉工作室2015 https://www.visualstudio.com/en-us/downloads/visual-studio-2015-downloads-vs

Visual Studio模拟器 https://www.visualstudio.com/en-us/features/msft-android-emulator-vs.aspx

专题视频https://channel9.msdn.com/Events/Visual-Studio/Visual-Studio-2015-Final-Release-Event/Visual-Studio-Emulator-for-Android

Java扩展的视觉效果工作室2012,2013。2015 https://visualstudiogallery.msdn.microsoft.com/bc561769-36ff-4a40-9504-e266e8706f93

您可以使用c#和Xamarin构建丰富的原生应用程序,并将100%的原生api暴露给您。或者使用c++和可以在iOS或Windows上重用的代码来实现最大的性能。

要跟上本文的内容,你需要一份Visual Studio,再加上“使用。net进行移动开发”的工作负载。您可以在第一次安装Visual Studio时启用此功能,也可以从“工具->获取工具和功能…”菜单项中访问它:

Visual Studio安装程序

When testing and running your app you have the choice of doing so with either an Android emulator running on your development machine, or by directly connecting to an existing Android device. There’s no right option here and different developers prefer different form factors. If you choose the former option, you’ll need to ensure once you’ve selected the workload that on the right-hand pane (‘Installation details’) the checkboxes for Intel Hardware Accelerated Execution Manager and Google Android Emulator are selected (as seen above).

这篇文章将帮助你通过visual studio来做基本的android应用程序。我把链接放在下面。

https://developer.okta.com/blog/2018/12/27/build-a-basic-android-app-with-xamarin-and-visual-studio