Re: [android-developers] sample code req.

2013-03-06 Thread don rhummy
http://marakana.com/s/post/1017/android_bootcamp_series_2012_video_tutorial From: ramesh babu rameshbabu...@gmail.com To: android-developers@googlegroups.com Sent: Wednesday, March 6, 2013 11:36 AM Subject: [android-developers] sample code req. Hi frnds...,  

[android-developers] How rotate a line in Android XML?

2013-03-05 Thread don rhummy
I'm trying to draw a diagonal line in an Android app with the XML, but it is not working. It simply draws a horizontal line. main.xml

Re: [android-developers] How rotate a line in Android XML?

2013-03-05 Thread don rhummy
). Just set the duration of the animation to 0. From: don rhummy donrhu...@yahoo.com To: Android Developers android-developers@googlegroups.com Sent: Tuesday, March 5, 2013 8:56 PM Subject: [android-developers] How rotate a line in Android XML? I'm trying

Re: [android-developers] How to schedule a daily popup dialog box even when the app may not be running...?

2013-02-28 Thread don rhummy
Yes, the alarm manager will schedule it and then you can create an activity to be called with Theme.Dialog. From: TreKing treking...@gmail.com To: android-developers@googlegroups.com Sent: Wednesday, February 27, 2013 11:29 PM Subject: Re:

[android-developers] How add multiple reminders to calendar event that shows up on all devices, not just locally?

2013-02-26 Thread don rhummy
When I add one reminder for a calendar event, it shows up on all devices and emulators logged in to that calendar account. However, if I add multiple reminders for that event, only the device they were added from sees multiple reminders, all other devices see the last reminder added only.

[android-developers] How do I find reminders of future calendar events and remove if needed?

2013-02-25 Thread don rhummy
When I query the content resolver for Events.CONTENT_URI, it correctly shows me future events. But when I query for Reminders.CONTENT_URI, it only shows me reminders that have occurred already. I want to find if a future event has a reminder and allow the user to remove it if needed. How do I

[android-developers] When change reminder on calendar event, it changes event id!

2013-02-22 Thread don rhummy
I am trying to write some code that can tell if the reminders on an event were changed (either one added or removed) but I'm getting a weird occurrence. Instead of the reminder being removed or altered, it appears the event is being removed and re-added! Is my code incorrect? Or is this what's

[android-developers] Is it possible to do a query that joins the Events and Reminders tables?

2013-02-22 Thread don rhummy
I want to do a query that joins the Events.CONTENT_URI and Reminders.CONTENT_URI tables into one query. Is this possible? -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: How identify calendar event across devices?

2013-02-21 Thread don rhummy
for this. From: Nobu Games dev.nobu.ga...@gmail.com To: android-developers@googlegroups.com Cc: don rhummy donrhu...@yahoo.com Sent: Thursday, February 21, 2013 10:46 AM Subject: Re: How identify calendar event across devices? What I did in one of my apps was adding

Re: [android-developers] An idea for Google Now!

2013-02-21 Thread don rhummy
This feature is already in Google Now. It's done through these cards: * Photo spots nearby * Events (for nearby) * Movies * Places (also is local to where you are) From: Parthi K parthisof...@gmail.com To: android-developers@googlegroups.com Sent: Thursday,

Re: [android-developers] How use my app's notifications instead of calendar app's?

2013-02-20 Thread don rhummy
? From: TreKing treking...@gmail.com To: android-developers@googlegroups.com Sent: Tuesday, February 19, 2013 8:08 PM Subject: Re: [android-developers] How use my app's notifications instead of calendar app's? On Tue, Feb 19, 2013 at 4:43 PM, don rhummy donrhu

Re: [android-developers] How use my app's notifications instead of calendar app's?

2013-02-20 Thread don rhummy
? From: TreKing treking...@gmail.com To: android-developers@googlegroups.com Sent: Wednesday, February 20, 2013 11:57 AM Subject: Re: [android-developers] How use my app's notifications instead of calendar app's? On Wed, Feb 20, 2013 at 3:41 AM, don rhummy donrhu...@yahoo.com wrote: But how

Re: [android-developers] Re: Creating new intent with data android:scheme...

2013-02-20 Thread don rhummy
//Create the filter with the action IntentFilter filter = new IntentFilter( android.intent.action.View ); //Set the categories filter.addCategory( android.intent.category.DEFAULT ); filter.addCategory( android.intent.category.BROWSABLE ); //Set the data info (host is dataAuthority in Java)

[android-developers] How do I get the calendar eventID from the notification's broadcast intent?

2013-02-20 Thread don rhummy
I have a broadcast receiver that listens for a calendar reminder event (when it pops up in the notification tray). It gets the Intent and the intent's action (android.intent.action.EVENT_REMINDER), but I don't know how to get information about the calendar event from that intent. How do I get

Re: [android-developers] How use my app's notifications instead of calendar app's?

2013-02-20 Thread don rhummy
of calendar app's? On Wed, Feb 20, 2013 at 12:15 PM, don rhummy donrhu...@yahoo.com wrote: The problem with that is it requires my app to wake up and poll frequently. Use AlarmManager to get control at the event time. This does not require your app to wake up and poll frequently. If instead

[android-developers] Re: How do I get the calendar eventID from the notification's broadcast intent?

2013-02-20 Thread don rhummy
Sunghun Park mark.sunghun.p...@gmail.com To: android-developers@googlegroups.com Cc: don rhummy donrhu...@yahoo.com Sent: Wednesday, February 20, 2013 5:10 PM Subject: Re: How do I get the calendar eventID from the notification's broadcast intent? Hi. Please see Android documentation for Calendar

Re: [android-developers] Re: Automatied Environment for Android Building and Testing

2013-02-20 Thread don rhummy
I don't know GO Server but this all sounds like the perfect case for an Ant project. http://ant.apache.org/ They have plugins for jUnit (a testing framework) From: Jaison Brooks jaisonbro...@gmail.com To: android-developers@googlegroups.com Sent:

[android-developers] How identify calendar event across devices?

2013-02-20 Thread don rhummy
Is there a GUID that I can use to identify events across different devices on the same calendar account? The _id seems to be a local Id. -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] How use my app's notifications instead of calendar app's?

2013-02-19 Thread don rhummy
I'm making a calendar app and I want the system to use my app's notifications for event reminders instead of the default calendar app's (so when a user clicks the notification it will open my app instead and I can do custom notifications in 4.x). How would I do this? -- -- You received this

Re: [android-developers] Installed platform version not showing up in Virtual Device Manager

2013-02-09 Thread don rhummy
Thanks for the reply. I checked and there's a check mark next to everything under Android 4.2, 4.1, 4.03, 4.0, 2.3.3. I downloaded them all again but still don't see anything but 4.2 in Virtual Device Manager! Could there be some issue with paths? How would I fix this?

[android-developers] Installed platform version not showing up in Virtual Device Manager

2013-02-05 Thread don rhummy
In Eclipse, the Android SDK Managaer shows that I have the platform versions 2.3.3-4.2 installed, but when I go to create a new device in Android Virtual Device Manager, it only shows 4.2 as an option. What could be wrong? -- -- You received this message because you are subscribed to the

[android-developers] Will the developer phone work with CDMA?

2010-08-05 Thread don rhummy
Will the Nexus One Android Developer phone work on CDMA networks or only GSM? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group,

[android-developers] Re: New SDK Available

2008-12-08 Thread don rhummy
Will the phone work with Sprint? Is there anything that can use android with Sprint? --- On Mon, 12/8/08, Dianne Hackborn [EMAIL PROTECTED] wrote: From: Dianne Hackborn [EMAIL PROTECTED] Subject: [android-developers] Re: New SDK Available To: android-developers@googlegroups.com Date:

[android-developers] Re: New SDK Available

2008-12-08 Thread don rhummy
Well any phone works with sprint you will just have to pay more if it is not a sprint phone. Wait, I thought the phone didn't work with Sprint. Does it? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[android-developers] Re: New SDK Available

2008-12-08 Thread don rhummy
] Re: New SDK Available To: android-developers@googlegroups.com Date: Monday, December 8, 2008, 2:43 PM Sprint uses cdma in most of its coverage areas. Since the g1 is a GSM phone it probably will not work. On Mon, Dec 8, 2008 at 1:38 PM, don rhummy [EMAIL PROTECTED] wrote: Well any

[android-developers] Re: New SDK Available

2008-12-07 Thread don rhummy
but you won't have any 3G data. JBQ On Sat, Dec 6, 2008 at 10:31 PM, don rhummy [EMAIL PROTECTED] wrote: Will this unlocked phone work with a Sprint/Nextel SIM card? I've heard they're not compatible with most SIM-capable phones. --- On Sat, 12/6/08, gjs [EMAIL PROTECTED] wrote

[android-developers] Re: New SDK Available

2008-12-06 Thread don rhummy
Will this unlocked phone work with a Sprint/Nextel SIM card? I've heard they're not compatible with most SIM-capable phones. --- On Sat, 12/6/08, gjs [EMAIL PROTECTED] wrote: From: gjs [EMAIL PROTECTED] Subject: [android-developers] Re: New SDK Available To: Android Developers

[android-developers] How, when do I join Android Developer Challenge II?

2008-11-22 Thread don rhummy
How do I join the second Android developer challenge? When is the deadline? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] How, when do I join Android Developer Challenge II?

2008-11-22 Thread don rhummy
How do I join the second Android Developer Challenge? When is the deadline? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to