1
我嘗試從我的Android應用程序打開Tumblr應用程序,我想使用意圖做到這一點,但是,什麼是意圖打開我的應用程序展示特定用戶的tumblr應用程序?從我的應用打開Tumblr應用?
對不起我的英語不好:(
我嘗試從我的Android應用程序打開Tumblr應用程序,我想使用意圖做到這一點,但是,什麼是意圖打開我的應用程序展示特定用戶的tumblr應用程序?從我的應用打開Tumblr應用?
對不起我的英語不好:(
試試這個:
Intent intent = getPackageManager().getLaunchIntentForPackage("com.tumblr");
startActivity(intent);
此解決方案假定,您已經安裝在設備上的tumblr的應用程序如果不這樣做,那麼原意爲空。
這個打開的應用程序,但不顯示特定的用戶/配置文件,我尋找這樣的代碼,但對於tumblr:Intent(Intent.ACTION_VIEW,Uri.parse(「fb:// profile /」+ Id)) – ratoncolorao
要打開特定的Tumblr活動,對於某些特定的數據,Tumblr應用程序必須實施針對該過濾器的意向過濾器/操作噸。我認爲它不提供此功能,但我沒有搜索它。這更像是Tumblr開發者的問題。 –