The Calendar Provider is a repository for a user's calendar events. The Calendar Provider API allows you to perform query, insert, update, and delete operations on calendars, events, attendees, reminders, and so on.

learn more… | top users | synonyms

-2
votes
0answers
15 views

Get events from calendar in android

Below is my code where I am trying to get events stored in calendar in android. I tried running it and everytime i get null pointer exception. It seems like there is a problem with the URI. The code ...
1
vote
1answer
38 views

Custom Calendar with Events in Android [closed]

My Requirement:- I am trying to make an app which have only calendar functionality, when user opens the app, calendar opens same like Google calendar. I receive events from web service and i have to ...
0
votes
3answers
46 views

Android CalendarView for Showing Events

I want to show a calendar with events using different color on the date similar to default Calendar application. But I don't see any such API on default calendar view. Can anyone please direct me on ...
0
votes
0answers
35 views

How do I add an event to the calendar? [duplicate]

I'm trying to add an event to the android calendar. this is for sdk 2.3.3. I have read and tried all sorts of examples I found on the web, but nothing seems to work... The main problem is that the ...
0
votes
1answer
34 views

add calendar event without opening calendar

In my app, the user can set up to 3 reminders for a task, but every time I press the "set reminder" button it opens up the calendar app. Is there any way to set the calendar events without opening the ...
0
votes
2answers
44 views

Android Calender reminder event issue

hello everyone I am a newbie here but I dont care if you people like it or not......... but I do not understand the way this site work................. If I ask any question that has already been ...
0
votes
1answer
28 views

android Calender event issues

hi everyone I am a newbie and learning android...i got the following code from this post written by @Abhi Put reminder in real calendar on the phone? this post does provide the answers, only code. ...
0
votes
1answer
44 views

Schedule several automatic tasks using AlarmManager and Calendar

I have this piece of code... desc.setOnClickListener(new OnClickListener(){ public void onClick(View arg0){ alert.setTitle("Download"); alert.setIcon(R.drawable.go_down_3_32x32); ...
0
votes
0answers
24 views

Getting rid of “Attending?” in Android calendar event, using the Calendar API

I'm creating a local calendar on an Android device, and inserting events into this. Here is my code (using dummy data for now): public static Uri createCalendarWithName(Context ctx, String ...
0
votes
1answer
43 views

Next week implementation in android

In my sample project i have to implement next week Monday to sunday in a text view (like 6 May >> 12 My). on click of next button it must show next week start date and end date (like 13 May >> 19 ...
2
votes
0answers
28 views

How to change the ringtone of calendar events

Apparently, Android system settings Ringtones and Notifications are completely different from the calendar -> Settings -> General Settings -> Notifications. I figured out how to change my System ...
0
votes
1answer
24 views

Calendar event, custom form

Is there a way to fill out the calendar for Droid 4.0 without using the built in form? For example, I created my own form where the user fills out, and upon a button press, I want it to add the ...
1
vote
0answers
86 views

Android CalendarContract, deleting a recurring event causes all events to disappear on calendar?

I have a sync adapter that handles syncing calendars and events. I am able to delete normal events just fine. But whenever I delete a recurring event, all the events on my calendar disappear. One ...
0
votes
1answer
34 views

CalendarView: distinguish scroll from tap

I am trying to build a scheduling application, and I am trying tell my app to distinguish between scrolling up and a tapping a date. When I scroll up to a certain month, the setOnDateChangeListener is ...
1
vote
2answers
39 views

Getting current week days with dates

I want to get current week dates Lets think: today is Tuesday 07.05.2013. I want get a list of this week days with dates How can I do this ? Sunday 05.05.2013 Monday 06.05.2013 *Tuesday 07.05.2013 ...
0
votes
1answer
23 views

Difficulties with showing android calendar in different versions

I am trying to open the user's calendar. I wrote the following code: startMillis = Calendar.getInstance().getTimeInMillis(); Uri.Builder builder = ...
1
vote
0answers
46 views

Android Calendar: how to write sync adapter for calendar INSERT

I would basically like to reopen the following unanswered post: Insert new calendar with SyncAdapter- Calendar API Android I would like to make use of the Android Calendar Provider API to create a ...
0
votes
0answers
131 views

Android Emulator: Calendar application will not synchronize with google calendar

I would like to reopen this question since I am having the same problem: Use Calendar within emulator Adroid 4.0 + Namely, I see a Calendar application on virtual devices running android 4.0 or ...
0
votes
0answers
21 views

Retreive latest calendar events

I have a textview which is supposed to display the latest calendar event from the phone's synced calendars. Unfortunately, it doesn't show the event(even if I press the "Next" button). It displays ...
0
votes
0answers
22 views

How to show an upcoming calendar event android

I've seen many tutorials both here and other places on the internet on how to edit the user's calendar, but not on how to get a calendar event. I want my app to go through all the calendars synced ...
0
votes
0answers
60 views

SyncAdapter, Handling Local edits, and flags (DELETED, DIRTY, AND CALLER_IS_SYNCADAPTER)

App syncs to a CalDAV server Uses the default Android calendar app along with a SyncAdapter My problem is that I don't follow how the SyncAdapter deals with local edits. I have some logic in my ...
1
vote
1answer
45 views

Show notification at specific time when accessing to Calendar Database

I have an Arraylist containing dates and hours of appointment.What i need to do here is to show a notification when the time of an appointment has come.My application run on android 4.0.3 .I've got ...
1
vote
1answer
60 views

Android retrieving events from local device calendar

Am trying to fetch the events from device local calendar in android. Am using this below code for retrieving events from calendar. cursor cursor = ...
0
votes
0answers
39 views

Adding event to calendar

I have this code for adding an event to the calendar: long calID = 3; long startMillis = 0; long endMillis = 0; Calendar beginTime = Calendar.getInstance(); beginTime.set(2013, 3, 23, 7, 30); ...
0
votes
0answers
47 views

Insert new calendar with SyncAdapter- Calendar API Android

I'm trying to add a new calendar to my google account by using the Android Calendar Provider API. As written in the API you have to implement a SyncAdapter to create a new calendar. So, if I ...
3
votes
0answers
82 views

In calendar, how to change the background color of selected item in android grid view

In calendar, When i select the date, I need to change the background color of grid item and also remove the background of previous selected item. When i click and hold the date 10, (Shown in image ...
0
votes
0answers
47 views

Local calendar on android emulator

How do we add events to "LOCAL" calendar on Android emulator. I tried building the android emulator with the calendar app, but when I open the calendar app on emulator, it asks me to add an account. ...
0
votes
1answer
99 views

Adding a Calendar to a SyncAdapter Account for API 10 (2.3.3) to API (14)?

I have created a SyncAdapter along with authentication. Now that I am able to add a synced account to my device, I would like that account to be able to have Calendars associated to it. My ...
1
vote
2answers
81 views

How can I add event to the calendar automatically?

How can i add event to the calendar automatically? If I use this source code, it opens Calendar with filled entries, but I must click on save button to save it. public class ...
0
votes
1answer
40 views

Alternative to CalendarContract in Android API 8?

My application needs the functionality to add Events into internal phone Caledar. In API 14 it is possible via CalendarContract with smth like the code below. What would be an alternative in API 8? ...
0
votes
1answer
35 views

Implement Calender sync functionality in Android

I am developing an app to get the android calender synced with my calender present on server as I have found there is an Account Manager API that can sync calender and contacts on your device but I am ...
3
votes
1answer
45 views

Android Display a date of the week

i want to display the days of the week with the date of that week. Like today, i want to display for my calendar is like this: Mon Tues Wed Thurs Fri Sat Sun 8 9 10 11 12 13 ...
0
votes
1answer
93 views

Getting event data from Calendar Broadcast Receiver intent

I am trying to work with Android Calendar API, and have some problems. I created a broadcast receiver, and added intent filter into manifest like this: <receiver ...
2
votes
1answer
52 views

Opening Android App from Calendar

The app I'm working on needs to be able to create events in a chosen Calendar and then when the user views these events in their calendar viewing app it offers an option to return to the my app to ...
0
votes
0answers
34 views

Clear reminders from calendar set by my app on its unistall

When my app is uninstalling, I am trying to clear reminders from calendar set by my app problematically. Going through some questions, like How to show an Activity BEFORE my app is uninstalled ...
0
votes
0answers
53 views

Can't to use add(Calendar.DAY_OF_MONTH,1) in android

i tried to use button onClick handler to add 1 day to calendar, but it throws error, when i tap to nextDay button. That's a code fragment: public class Main extends Activity { TextView dateView; ...
0
votes
1answer
45 views

Add event in android native clander from my application and sync

I want to make an application for my calender events what I want to do is when i will create an event on my server the same should be automatically added in the android native calender using my ...
0
votes
1answer
53 views

Calendar event is getting added but notification is not coming

I am trying to add calendar event. It's getting added to native calendar but notification is not coming. Here is my code. TimeZone timeZone = TimeZone.getDefault(); long startTime = ...
0
votes
0answers
86 views

Android inserting new Calendar Synchronization

I would create a new calendar in a existing Google account using my custom Android application. Following some tutorial found here in stack overflow I created the application composed by: main ...
1
vote
1answer
25 views

Android Preference-Specific Permission Requests

Is there a way to request a specific permission only when the user enables a certain preference? In my case, I have an option to sync with the calendar to add dates and set reminders (to my ...
1
vote
0answers
40 views

Android personal organizer with notificationi?

I am making a personal organizer app in android. One of the feature of it is calendars in day and week view inside the app. Users are able to add events in the app which are stored in a databse. users ...
0
votes
0answers
26 views

How to avoid reminder when adding an event to the calendar

I add an event to the calendar with this method: private void writeToCalendar() { Intent l_intent = new Intent(Intent.ACTION_EDIT); l_intent.setType("vnd.android.cursor.item/event"); ...
1
vote
2answers
141 views

Calendar Instances provider source code?

I am looking through the android calendar source code for the Instances Content Provider to see how it works and gets populated. The reason being is that I am trying to replicate its workings in my ...
2
votes
1answer
727 views

Adding Custom Calendar Events – Phonegap Android plugin

Below is my CalendarEventPlugin.js file: window.addcalendareventplugin = function(startDate, endDate, allDay, successCallback){ //call the Plugin execute method() ...
0
votes
0answers
22 views

Adding events that are stored on a database onto a Calenderview Android

Hi i am fairly new to android and cannot find this answer anywhere, I have a cursor that will go through a querie of the dates i want and i have a xml calenderview with calenderview1 as the id. I ...
1
vote
1answer
55 views

Vertical scrolling in calendar

I am trying to create a calender for android 4.x devices where in the dates should get displayed in cell and month name at the top. now where ever user scroll up and down it should change the month ...
0
votes
0answers
22 views

Android CalendarProvider-Event custom column

What is the best way to extend the CalendarProvider-database by a new column? I want to store some extra data for every Calendar-Event. I tried to use CalendarContract.ExtendedProperties but this is ...
1
vote
2answers
54 views

Android Calendar illegalArgumentException when calendar.month set to 1

The code below works fine except when calendar.MONTH set to 1 (Feb),and I do not know why ? Thanks. Calendar calendar = Calendar.getInstance(); calendar.setLenient(false); ...
0
votes
1answer
69 views

How to implement CalenderView in Android

I am new at android this, so this might sound a bit confusing.. i am making an app that requires to have calendars showing events in week, day and month views (like google calendar). I have ...
0
votes
2answers
135 views

null pointer exception in dialogfragment

I am trying to display a calendarview in a dialog. The following is the code. When I click on the button which launches the the dialog, the app crashes with a null pointer exception. The null pointer ...

1 2 3 4 5