我正在嘗試在我的應用中整合Google日曆以將我的活動添加到Google日曆,但我不知道如何整合。請任何一個你能幫助我提前如何在我的android應用程序中集成Google日曆?
-1
A
回答
1
謝謝如果你想在你的應用程序直接使用Google日曆,您可以使用此GitHub的庫,提供了很多定製的:
但是如果你希望使用的日曆,你應該與這些意圖工作:
在你的代碼試試這個:
Calendar cal = Calendar.getInstance();
Intent intent = new Intent(Intent.ACTION_EDIT);
intent.setType("vnd.android.cursor.item/event");
intent.putExtra("beginTime", cal.getTimeInMillis());
intent.putExtra("allDay", true);
intent.putExtra("rrule", "FREQ=YEARLY");
intent.putExtra("endTime", cal.getTimeInMillis()+60*60*1000);
intent.putExtra("title", "A Test Event from android app");
startActivity(intent);
添加權限..
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"...>
<uses-sdk android:minSdkVersion="14" />
<uses-permission android:name="android.permission.READ_CALENDAR" />
<uses-permission android:name="android.permission.WRITE_CALENDAR" />
...
</manifest>
而對於谷歌日曆的訪問,最好的辦法是使用Google Calendar API。
0
你可以使用谷歌API 例如,您的徒步旅行應用程序可以自動添加路由到用戶的日曆。 https://developers.google.com/google-apps/calendar。
相關問題
- 1. 如何在我的應用程序中集成Google日曆
- 2. 如何在Android應用程序中集成Google Analytics(分析)
- 3. 如何在Android應用程序中集成Google閱讀器?
- 4. 如何在我的Android應用程序中集成Google閱讀器
- 5. 如何在我的Android應用程序中集成Google地圖
- 6. 在我的應用程序中集成Google Analytics圖表
- 7. 在Django應用程序中集成Google登錄和日曆訪問
- 8. 在Android應用程序中集成Google,Yahoo和OpenID?
- 9. 如何在我們的iOS應用程序中集成Google雲端硬盤
- 10. 如何在PHP應用程序中集成Google登錄方法?
- 11. 在angular2應用程序中集成Google地圖 - 放置自動完成
- 12. 如何在我的應用程序中使用android日曆?
- 13. 如何從我的android應用程序刪除或編輯G日曆事件?
- 14. 在phonegap應用程序中集成DHTML調度程序日曆
- 15. 如何在我的應用程序中集成可點擊日曆
- 16. 無法將Google日曆API集成到Android應用程序中
- 17. 如何將WPF應用程序與OUTLOOK日曆集成?
- 18. 如何將iPhone聯繫人/日曆與我的PHP應用程序集成?
- 19. 如何在我的Android應用程序中集成Google地圖與所有地點和信息? Google地圖API
- 20. 我想從android應用程序打開日曆應用程序
- 21. 如何在我的應用程序中使用日曆
- 22. 如何在我的iPhone應用程序中使用日曆?
- 23. 如何將我的Android應用程序中的youtube集成?
- 24. 如何在Android應用程序中顯示內置的日曆
- 25. iOS應用程序中的Apple日曆集成?
- 26. 如何將Google +集成到我的Android應用程序中?
- 27. 如何將Youtube集成到我的Android應用程序中
- 28. 如何將Twitter集成到我的Android應用程序中?
- 29. 如何將Google Checkout集成到我的Android應用程序中?
- 30. 如何在c#.net窗口應用程序中生成日曆
請CHCK我的編輯解決方案...它可以幫助for..let我知道在關注 –
的情況下,爵士我的要求是,我需要添加日期和事件,谷歌日曆API,從那以後,我需要得到來自Google日曆API的通知。所以我可以用這種幫助嗎? - –
https://developers.google.com/google-apps/calendar/quickstart/android – Dhina