-3

Possible Duplicate:
Android app to retreive images and text from a website

How do I retreive images and text and display it in my android application,Like getting picture of cars and the car details from a car website if I am to write an app for car dealer

4

2 回答 2

0

通常,您可能

  1. 使用网站的 web 服务获取通量(格式为 json、xml...)
  2. 在您的应用程序中创建解析器以将通量解释为 Java 对象
  3. 使用 android 的视图 (ImageView TextView...) 在屏幕上显示。

我希望你能得到它,这是一个应用程序非常常见的情况。

于 2012-08-22T13:46:34.767 回答
0

您应该在这些网站中寻找数据馈送。如果您发现任何以 JSON、XML 等格式返回数据的链接,您可以在您的应用程序中对其进行解析并使用它。例如,您可以查看twitter status api

于 2012-08-22T13:47:20.970 回答