當我想在普通Facebook應用程序(通過我的應用程序調用它)上打開一個頁面時,我使用後續字符串來製作Uri.parse()。 "fb://page/[pageId]"
,它工作正常 我這樣做:String uri在Facebook Lite應用程序中打開頁面
String uriStr = "fb://page/[pageId]";
Uri uri = Uri.parse(uriStr);
startActivity(new Intent(Intent.ACTION_VIEW, uri));
然而,當我嘗試了Facebook精簡版中打開它,同樣沒有工作,我的應用程序是由一些錯誤關閉。 :(存在另一種方式什麼是正確的字符串來打開Facebook的精簡版在同一個頁面任何人都知道THX
編輯
logcat的錯誤:???
android.content.ActivityNotFoundException: No Activity found to handle Intent
*我的應用程序由於某種錯誤而關閉* - 什麼是錯誤?發佈錯誤logcat。 –
@Prerak Sola Thx,'android.content.ActivityNotFoundException:沒有找到處理意圖的活動,我也在那裏編輯。 – Anita