0

从服务器提取数据的 Android 日历 - 是否有任何 api 或 SDK 可以帮助解决这个问题。

基本上我有一个网站,想在我的应用程序中向日历添加事件..我没有日历设置,但会做..

我想从我的网站或服务器动态提取数据..

有谁知道这方面的任何资源或教程可以帮助我寻求解决这个问题..

任何帮助表示赞赏..

如果这有帮助的话,我目前为我的应用程序使用 libGDX 框架。

最好的

4

1 回答 1

0

您需要一种访问服务器中数据库的方法,例如使用 PHP 和 MySql:

http://php.net/manual/en/book.mysqli.php

然后从 libgdx 一个 HttpRequest 就可以了。它至少是基础。

    HttpRequest request = new HttpRequest(HttpMethods.GET);
    request.setUrl("http://domainname.com/path/phpfile.php?argument=value");

    Gdx.net.sendHttpRequest(request, new HttpResponseListener(){
            @Override
            public void handleHttpResponse(HttpResponse httpResponse){
                Gdx.app.log("HttpRequestExample", "response: " + httpResponse.getResultAsString());
            }

            @Override
            public void failed(Throwable t){
                Gdx.app.error("HttpRequestExample", "something went wrong", t);
            }
    });
于 2013-11-08T11:23:15.703 回答