gpt4 book ai didi

android - Intent 打开 Twitch 用户个人资料

转载 作者:行者123 更新时间:2023-11-29 22:58:53 26 4
gpt4 key购买 nike

我想要打开用户的 twitch 配置文件的 Intent ,但我不知道在 Uri.parse(?) 中提供什么,我试过了但没有用 Intent to open Instagram user profile on Android

public String username;

public Intent TwitchProfile(){
Intent i;

try {
i = new Intent(Intent.ACTION_VIEW, Uri.parse("<what should I put here>://user?screen_name=" + username));
}catch (Exception e) {
i = new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.twitch.com/" + username));
}
return i;
}

最佳答案

试试这个:

Uri uri = Uri.parse("https://www.twitch.com/_u/" + username);

Intent likeIng = new Intent(Intent.ACTION_VIEW, uri);

likeIng.setPackage("tv.twitch.android.viewer");

try {
startActivity(likeIng);
} catch (ActivityNotFoundException e) {
startActivity(new Intent(Intent.ACTION_VIEW,
Uri.parse("https://www.twitch.com/" + username)));
}

更多详情,您可以访问:https://dev.twitch.tv/docs/mobile-deeplinks/#launching-the-twitch-app

关于android - Intent 打开 Twitch 用户个人资料,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57156440/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com