-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"))); }
感謝幫助..