[android-developers] Re: Special Actions for IGTalkSession.sendDataMessage()

2008-03-29 Thread Peli
And since everybody can define their intents as they like, applications from different developers will likely not work well with each other... unless they use OpenIntents ;-) http://www.openintents.org/en/ Peli On Mar 29, 7:47 pm, jtaylor <[EMAIL PROTECTED]> wrote: > Interesting! > > ..thanks P

[android-developers] Re: Special Actions for IGTalkSession.sendDataMessage()

2008-03-29 Thread Peli
And since everybody can define their intents as they like, applications will likely not work well with each other... unless they use OpenIntents ;-) http://www.openintents.org/en/ Peli On Mar 29, 7:47 pm, jtaylor <[EMAIL PROTECTED]> wrote: > Interesting! > > ..thanks Peli > > - Juan > > On Mar

[android-developers] Re: Special Actions for IGTalkSession.sendDataMessage()

2008-03-29 Thread jtaylor
Interesting! ..thanks Peli - Juan On Mar 29, 2:17 pm, Peli <[EMAIL PROTECTED]> wrote: > Try this: > > public static final String YODEL_ACTION = "com.jtaylor.action.YODEL"; > Intent intent = new Intent(this.YODEL_ACTION); > > (It is really just a string that you can define as you like). > > Pe

[android-developers] Re: Special Actions for IGTalkSession.sendDataMessage()

2008-03-29 Thread Peli
Try this: public static final String YODEL_ACTION = "com.jtaylor.action.YODEL"; Intent intent = new Intent(this.YODEL_ACTION); (It is really just a string that you can define as you like). Peli On Mar 29, 6:52 pm, jtaylor <[EMAIL PROTECTED]> wrote: > Dan, > > I think I have to explain my probl

[android-developers] Re: Special Actions for IGTalkSession.sendDataMessage()

2008-03-29 Thread jtaylor
Dan, I think I have to explain my problem better. I think I mean a Custom Action? I am using the method IGTalkSession.sendDataMessage(). I want this method to work. :) As far as I can tell, the second parameter needs an Intent which broadcasts an action. It's not an explicit call to a class whic

[android-developers] Re: Special Actions for IGTalkSession.sendDataMessage()

2008-03-28 Thread Dan Morrill
Hi, Juan! An Intent is just a messenger object for abitrary data. It sounds like you are looking for an API call to register your application's Intent with the system; however, there is no such API. All you need to do is just create an Intent instance and set the fields on it. You never need t

[android-developers] Re: Special Actions for IGTalkSession.sendDataMessage()

2008-03-28 Thread jtaylor
Where are there instructions to create a Custom Intent? I'm supposing I need it to send a data message in GTalk? - Juan On Mar 26, 8:19 pm, jtaylor <[EMAIL PROTECTED]> wrote: > This is obviously an Intent defined by the App. > android.intent.action.SAMPLE_GTALK_DATA_MESSAGE in the AndroidManife

[android-developers] Re: Special Actions for IGTalkSession.sendDataMessage()

2008-03-26 Thread jtaylor
This is obviously an Intent defined by the App. android.intent.action.SAMPLE_GTALK_DATA_MESSAGE in the AndroidManifest is not a standard broadcast intent. "There are a variety of standard Intent action and category constants defined in the Intent class, but applications can also define their own.