2016-07-20 120 views
-1

如果應用程序在手機上存在,我想打開twitter主要活動twitter應用程序。我怎樣才能做到這一點?如何以編程方式從android打開twitter主要活動?

我發現了這些代碼。但它打開用戶配置文件活動

try { Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("twitter://user?user_id=USERID")); startActivity(intent); } catch (Exception e) { startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://twitter.com"))); }

感謝幫助..

回答

0

您應該查詢PackageManager和檢查應用程序中存在或是否該意圖可以在設備上進行解釋。如果存在,啓動意圖。否則無論你需要做什麼。

相關問題