-3

what is the best practice to send data to client android application using web-server or Google cloud management or web services . i want to send SVGfile to android client application from my pc or my server.

4

2 回答 2

1

而不是向客户端发送数据(假设您的客户端成为以某种方式监听此类数据的服务器),我只会在客户端上触发一个事件,然后该事件将从服务器下载数据。

所以让我们假设这两个选项:

  1. 您的客户端每 X 分钟查询一次您的网络服务器,以查看是否有(新)内容要下载
  2. 您通过 Google cloud 2 设备消息系统收到推送消息

然后两者都将触发下载例程。这是一个如何通过 URL 下载图像的示例 如何在 Android 中通过 URL 加载 ImageView?

于 2013-07-16T12:55:33.543 回答
0

要向这个方向发送数据(从 PC 到 Android),您需要 Google Cloud Messaging:

http://developer.android.com/google/gcm/index.html

因为客户端中的应用程序可能正在“休眠”

于 2013-07-16T12:51:43.817 回答