我一直在做自己的研究,但无济于事。我正在做一个包含列表视图的 android 应用程序,它需要从远程数据库中查询数据。如果有人可以分享教授此类内容的优秀教程链接,我将不胜感激。抱歉,我知道这不是一个合适的问题,但我真的需要一些帮助。谢谢。
4 回答
你可以参考这个教程
或者参考这个
要与远程数据库通信,您需要可以从远程数据库获取数据或将数据适配到远程数据库的 Web 服务。
我不确定您当前使用的是哪些 Web 平台,但我建议您使用带有 JSON 的 REST。
How about a simple web service in the middle?
It helps to prevent you putting database username/pw directly in the app too.
App -> Http requests -> Web service -> Database
The Http requests can be done via Android HttpClient
The web service can be in php for example. (There is a lot example for php to database on google.)
This is the typical case of SyncAdapter
with it you can use the remote database from your content provider as a regular DB.
I have done it and it works well with only few complexities.