其他分享
首页 > 其他分享> > Android – Google Talk意图

Android – Google Talk意图

作者:互联网

我正在开发一个Android应用程序,其中显示Google Talk联系人的状态 – 这很好用.

我不确定使用默认的Talk应用程序打开聊天窗口应该调用哪个意图.

>我如何知道可以拨打哪些Google Talk意图?
>我如何知道一般可以调用哪些意图?

我无法使用以下代码:

Uri imUri = new
Uri.Builder().scheme("imto").authority("skype)").appendPath("apactple").build();             
Intent intent = new Intent(Intent.ACTION_SENDTO, imUri); 
this.startActivity(intent);

有任何想法吗?

解决方法:

第一个问题:

Uri imUri = new Uri.Builder().scheme("imto").authority("gtalk").appendPath("username(e.g.user@googlemail.com)").build();
Intent intent = new Intent(Intent.ACTION_SENDTO, imUri);

第二个问题:

final PackageManager packageManager = context.getPackageManager();
final Intent intent = new Intent(Intent.ACTION_SENDTO);
List<ResolveInfo> resolveInfo =
        packageManager.queryIntentActivities(intent,
                PackageManager.MATCH_DEFAULT_ONLY);

标签:google-talk,android,android-intent
来源: https://codeday.me/bug/20190730/1578335.html