我想打开一个特定的用户ID:
我开发了这种静态方法:
public static Intent newSnapchatIntent(String id) {
if (isApplicationEnabled(Defines.SNAPCHAT_PACKAGE_NAME)) {
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("*/*");
intent.setPackage("com.snapchat.android");
return intent;
}
return new Intent(Intent.ACTION_VIEW, Uri.parse(NetworkUtils.formatUrlPath("https://snapchat.com", id)));
}
但我不知道如何根据此#id打开特定的用户配置文件。你有个想法吗?
非常感谢你
我不认为这样做是可能的。但也许这会有所帮助。如果您需要更多,可以在底部链接GitHub存储库。