I am developing an Android application which Google Talk contacts are displayed with their status - this is working fine.
I am not sure which intent should be called to open a chat window using the default Talk app.
- How do I know which Google Talk intents are available to call?
- How do I know which intents are available to call in general?
I am unable to get the following code to work:
Uri imUri = new
Uri.Builder().scheme("imto").authority("skype)").appendPath("apactple").build();
Intent intent = new Intent(Intent.ACTION_SENDTO, imUri);
this.startActivity(intent);
Any ideas?