I want an intent to open twitch profile of a user, but I don't know what to give in Uri.parse(?), I have tried this but isn't working 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;
}