从 android 应用打开 yelp 深度 link

Opening yelp deep link from android app

我正在使用以下代码,它没有打开 yelp 应用程序:

    String uriString = "yelp://biz/" + "some name"; 
    startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(uriString))); 

而是说

Could not execute method of the activity !

有什么指点吗?

答案是,直接调用yelp页面的httpurl,如果预装了yelpapp,会询问是否打开。否则,它只会在浏览器中打开。