我正在尋找某種方式來啓動Twitter應用程序,並從我的應用程序中打開指定頁面,無需webview。 我在這裏找到了Facebook的解決方案: Opening facebook app on specified profile page從其他應用程序在Twitter應用程序中打開頁面 - Android
我需要類似的東西。
編輯 我只是找到了一個解決方案:
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的用戶ID!我會在這裏提供更具體的例外情況:ActivityNotFoundException –
並且「twitter:// status?user_id = [USER_ID]&status_id = [STATUS_ID]」是可能的 – ChangUZ
@jbc當我們點擊按下時,有任何回撥。 – NagarjunaReddy