1. ホーム
  2. android

[解決済み] 他のアプリからTwitterアプリのページを開く - Android

2023-07-03 12:31:39

質問

Twitterアプリを起動し、Webビューを使わずに、アプリケーションから指定されたページを開く方法を探していました。 私はここで Facebook のための解決策を見つけました。 指定したプロフィールページでfacebookアプリを起動する

似たようなことが必要です。

EDIT 解決策を見つけました。

try {
    Intent intent = new Intent(Intent.ACTION_VIEW,
    Uri.parse("twitter://user?screen_name=[user_name]"));
    startActivity(intent);
} catch (Exception e) {
    startActivity(new Intent(Intent.ACTION_VIEW,
    Uri.parse("https://twitter.com/#!/[user_name]"))); 
}

どのように解決するのですか?

これは私のために働いた。 twitter://user?user_id=id_num