Skip to main content

All Questions

2 votes
0 answers
35 views

Subscribe for external Google Calendar via Android programatically

I want to subscribe external Google Calendar into my Google calendar via intent from third-party application. I'm trying to make somehow intent with calendar URL to Google Calendar native application ...
Kostadin Georgiev's user avatar
0 votes
1 answer
155 views

Calendar Intent - returns back to Calendar App when save or back is clicked

I start a calendar intent because i want to insert a new event to the google calendar. This is the code: Intent intent = newIntent(Intent.ACTION_INSERT).setData(CalendarContract.Events.CONTENT_URI); ...
Nao Kreuzeder's user avatar
0 votes
0 answers
139 views

How to insert an event on google calendar without using android intents?

Basically, I'm booking appointments for the patients the main thing I want is that as the appointment is booked the event is set on google calender on the user phone. I'm passing the time and date as ...
Usama Hafeez Official's user avatar
0 votes
0 answers
79 views

AlarmManager double triggers

I need the AlarmManager to be triggered after a certain time starting from a given time. I try this if(mgr != null) mgr.cancel(pendingIntent); intent = new Intent(App.getContext(), AlarmReceiver....
Ксения's user avatar
1 vote
1 answer
271 views

How to fix an Intent for calendar not adding it as an all day event

I am trying to add a button to my app that allows someone to add an assignment to their calendar. I am doing this using an Intent and CalendarContract. Everything is working correctly, in that it ...
Mark Roth's user avatar
0 votes
0 answers
407 views

getting event ID after creating it using intent

(first of all, sorry if any of this sounds stupid, but I'm a total nood regarding android) I'm working on an organizer app where I want to create a Calendar Event using an intend, and afterwards I ...
Jarhara's user avatar
  • 21
-1 votes
1 answer
70 views

AlarmManager not running

I am attempting to create a more complex app but was unable to correctly use AlarmManager to open an activity. I tried distilling the code down just to the essence of what I'm missing is, but it still ...
TomRuuth's user avatar
0 votes
0 answers
109 views

How to insert multiple days into a calendar intent?

I'm trying to set up an intent to prepopulate an event in the calendar app with the days the user selects. Here is the intent: Calendar cal = Calendar.getInstance(); ...
ksb 's user avatar
  • 87
0 votes
1 answer
573 views

setRepeating Not Working in Alarm Manager

I use the code below to start and stop service in android, first repeating alarm works, but second one fails most of the time. When I disable the first repeating then second one works. What could be ...
Logan's user avatar
  • 13
1 vote
0 answers
474 views

Using Intents with Google Calendar in Android - Workarounds for the existing bug?

I'm creating an Android application. In this application I need to schedule appointment, and for this I'm creating calendar events. For this, I try to follow the guidelines provided in the ...
Sourcerer's user avatar
  • 2,086
2 votes
1 answer
4k views

Open Android Calendar with Intent from Web (Chrome)

You can open Android apps from within Chrome using HTML links. And I know that an intent from within an Android app to open the calendar is content://com.android.calendar/time (How to use Calendar ...
Robert's user avatar
  • 1,936
0 votes
1 answer
308 views

How can I put repeat in calendar event by intent ? - ANDROID

I am using this code to add calendar event: Calendar cal = Calendar.getInstance(); Intent intent = new Intent(Intent.ACTION_EDIT); intent.setType("vnd.android.cursor.item/event"); ...
remes's user avatar
  • 67
0 votes
1 answer
88 views

How to get confirmation when calendar event was created via intent?

I'm creating a calendar event via intent. Here is my code: Intent intent = new Intent(Intent.ACTION_INSERT) .setData(CalendarContract.Events.CONTENT_URI) .putExtra(...
android enthusiast's user avatar
0 votes
0 answers
41 views

Creating fully working alarm clock [duplicate]

Hello I would like to create a basic but fully working alarm clock application just to increase my android programming skills but it has too many bug I have to rewrite it from scratch. A pending ...
uplnypan's user avatar
1 vote
1 answer
140 views

User Pick Calendar Event

How would I have a user pick an event from their device calendar? Android Calendar Provider Documentation and this question state that you can view the calendar using an Intent like so: long ...
Kevin Thorne's user avatar

15 30 50 per page
1
2 3 4 5 6