我遇到一个问题是在代号为inter的情况下拦截了android的网址。我使用构建提示ios.urlScheme和ios.plistInject让它适用于ios。我用于android的构建提示是:
android.xintent_filter=<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="mibrand" /> </intent-filter>
然而,android并没有将文本“mibrand:// ...”注册为链接,因此它只是纯文本,不能在任何Android设备上点击。我做错了什么?
这是我的PHP代码
<?php
$store = $_GET['ref'];
$id = $_GET['id'];
$link1 = "mibrand://";
$link1 .= $store;
$link1 .= "/";
$link1 .= $id;
$link2 = "http://www.mibrandapp.com";
?>
<a href="<?php echo $link2 ?>"></a>
<a href="<?php echo $link1 ?>"></a>
然后我将链接设置为分享到mylink / share.php?ref = store&amp; id = 56
它不适用于ios
答案 0 :(得分:3)
您需要将其放在html页面中并自行添加链接,然后将该页面分享给您的用户
<html>
...
<a href='mibrand://...'> open my app </a>
...
</html>
我刚刚使用http://codenameone.com/testm.html验证了这是有效的:
<html>
<head>
<title>Mibrand Test</title>
</head>
<body>
<a href="mibrand://launch"> open my app </a>
</body>
</html>
我使用上面描述的构建提示映射到codenameone_settings.properties
:
codename1.arg.android.xintent_filter=<intent-filter> <action android\:name\="android.intent.action.VIEW" /> <category android\:name\="android.intent.category.DEFAULT" /> <category android\:name\="android.intent.category.BROWSABLE" /> <data android\:scheme\="mibrand" /> </intent-filter>
如果您需要通过电子邮件将其工作,只需重定向到包含重定向到该链接的JavaScript代码的HTML。