在另一个应用程序或浏览器中打开URL [Titanium]

时间:2015-01-18 08:42:59

标签: android android-intent titanium titanium-alloy

我正在编写一个功能,需要在另一个应用程序[如果安装在我的手机中]或者在浏览器中打开URL。

要在浏览器中打开网址,我可以使用Titanium.Platefor.openURL();

要打开应用程序,我正在创建意图。

var intent = Titanium.Android.createIntent({
    packageName : appUrl,
    action : Titanium.Android.ACTION_SEND,
    data : url
});
intent.addCategory(Titanium.Android.CATEGORY_BROWSABLE);

Titanium.Android.currentActivity.startActivity(intent);

我陷入了困境:

  1. 如何将网址传递给其他应用打开 - 我尝试使用网址传递网址:' http://someurl'和数据:' http://someurl' - 但没有帮助。我收到错误:找不到处理意图的活动

  2. 如何确定应用是否已安装?如果是 - 请求打开应用程序,如果不是 - 请在浏览器中打开该网址。

  3. 有人可以帮忙吗?

    提前致谢!

1 个答案:

答案 0 :(得分:2)

您可以在android中使用带有Titanium.Platefor.openURL();方法的URL架构识别app是否安装。 (如果未安装app,则返回false)。 对于ios,有一种方法可以识别Titanium.Platform.canOpenURL()。 并且您也可以将某些值传递给应用程序,例如,如果您在ios中打开包含源和目标lat长的谷​​歌地图应用程序,那么就像这样调用

var strUrl = "http://maps.google.com/maps?saddr=" + Alloy.Globals.UserLocation.latitude + "," + Alloy.Globals.UserLocation.longitude + "&daddr=" + dLatitude + "," + dLongitude;
if (OS_IOS) {
    strUrl = "comgooglemaps://?saddr=" + Alloy.Globals.UserLocation.latitude + "," + Alloy.Globals.UserLocation.longitude + "&daddr=" + dLatitude + "," + dLongitude + "&directionsmode=driving";
    if (Titanium.Platform.canOpenURL(strUrl)) {
        Ti.Platform.openURL(strUrl);
    } else {
        strUrl = "http://maps.google.com/maps?saddr=" + Alloy.Globals.UserLocation.latitude + "," + Alloy.Globals.UserLocation.longitude + "&daddr=" + dLatitude + "," + dLongitude;
        Ti.Platform.openURL(strUrl);
    }
} else {

    var result = Ti.Platform.openURL(strUrl);
    Ti.API.info('RESULT = ' + result);
}    

还有一个例子..如果你想用给定的消息文本打开whatsApp应用程序。

var whatsappUrl = encodeURI('whatsapp://send?text=' + msgBody);
    if (OS_IOS) {
        if (Ti.Platform.canOpenURL(whatsappUrl)) {
            Ti.Platform.openURL(whatsappUrl);
        } else {
            Ti.Platform.openURL("https://itunes.apple.com/ae/app/whatsapp-messenger/id310633997?mt=8");
        }
    } else {
        var isSuccess = Ti.Platform.openURL(whatsappUrl);
        if (!isSuccess) {
            Ti.Platform.openURL("https://play.google.com/store/apps/details?id=com.whatsapp&hl=en");
        }
    }

跳这有助于你.. :) 感谢