hi.
i have some problem regarding skype and gtalk intent
i have application in which i display a list of online skype,gtalk
contacts.
Now when ever i click my online skype or gtalk contacts it should
display a default skype or gtalk chat window with that Contacts

So basically i want to know is there any intent to call Chat screen of
Skype and Gtalk online Contacts

Right now i have intent to call skype and gtalk default application
login screen

GTALK -
Intent i = new Intent(Intent.ACTION_MAIN);
                    i.setComponent(new ComponentName("com.google.android.talk",
                "com.google.android.talk.SigningInActivity"));
                    startActivity(i);

SKYPE -
Intent i = new Intent(Intent.ACTION_MAIN);
                        i.setComponent(
                                        new ComponentName(
                                                     "com.skype.android.lite",
                                                     
"com.skype.android.lite.SkypeActivity"
                                                     )

                                        );
                                        startActivity(i);

but i want to display chat screen of both Skype and Gtalk
can any body help me in my issue

plz its urgent

thanks
jaimin.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to