Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/vb.net/15.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/cassandra/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
使用vb.net开发android应用程序是否有新的工具?_Vb.net - Fatal编程技术网

使用vb.net开发android应用程序是否有新的工具?

使用vb.net开发android应用程序是否有新的工具?,vb.net,Vb.net,我想知道在vb.net中开发用于开发android应用程序的工具的确认信息。是的。有可能在VisualStudio中开发android应用程序 您只需要Visual Studio 2013更新2或更多。 你需要Xamarin或Apache Cordova为android开发应用程序 希望这会有所帮助。我正在使用Visual Studio 2013社区更新4中的Cordova CTP 3.1开发一个android消息应用程序,如whatsapp 在客户端,即运行在andriod手机或iphone上

我想知道在vb.net中开发用于开发android应用程序的工具的确认信息。

是的。有可能在VisualStudio中开发android应用程序

您只需要Visual Studio 2013更新2或更多。 你需要Xamarin或Apache Cordova为android开发应用程序


希望这会有所帮助。

我正在使用Visual Studio 2013社区更新4中的Cordova CTP 3.1开发一个android消息应用程序,如whatsapp

在客户端,即运行在andriod手机或iphone上的index.html,我使用javascript、css和jquery

在服务器端,我使用VB.net中的CORS创建Web服务

例如,2个用户A和B,当A向B发送消息时,我执行以下操作:

  • 手机的index.html,输入消息,并使用带有CORS的异步ajax,调用www.myweb.com/sendmessage.asmx(由VB.net编写)。然后在sendmessage.asmx中,将消息存储在SQL server中

  • 手机的index.html,在收到sendmessage.asmx的响应后,请致电www.myweb.com/signal(由C#.net编写,此部分不能由vb.net编写)。这个信号呼叫B电话的index.html receiveMessage函数

  • B phone的index.html,在receiveMessage函数中,调用www.myweb.com/receiveMessage.asmx(由VB.net编写),从SQL server读取消息

  • 上述技术使用大量javascript和vb.net编码,并使用最少的c#编码。c#仅用于确认消息,编码逻辑最少。(因为我是vb程序员!)