3

我必须将 Google 日历中的事件添加到我自己的 Android 应用程序中。我怎样才能做到这一点?

在这里我使用了 gdata lib,但在 for 迭代中我得到了一些 id 而不是 tile。

提前致谢。

            DocsService client = new DocsService("myappname");
        try {
            client.setUserCredentials("example@gamil.com",
                    "pwd");

            URL feedUri = new URL(
                    "https://docs.google.com/feeds/default/private/full/");
            DocumentListFeed feed = client.getFeed(feedUri,
                    DocumentListFeed.class);

            // TextView textView = (TextView) findViewById(R.id.textView1);

            String text = "";
            for (DocumentListEntry entry : feed.getEntries()) {
                // text += entry.getTitle().getPlainText() + "\r\n";
                list.add(entry.getTitle().toString());

            }
            return list;
            // textView.setText(text);
        } catch (MalformedURLException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (ServiceException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
4

2 回答 2

4

您需要为此使用日历提供程序

对于事件,请查看以下链接:

http://developer.android.com/guide/topics/providers/calendar-provider.html#events

这是一些博客和相同的解释

http://www.grokkingandroid.com/androids-calendarcontract-provider/

在此链接中显示了如何在日历提供程序中读取和编辑事件。

希望这可以帮助...

于 2013-10-10T04:35:11.780 回答
1

您需要使用日历提供程序

http://developer.android.com/guide/topics/providers/calendar-provider.html

于 2013-10-10T04:28:17.887 回答