我为网页上的按钮设置了用户点击事件。
$('.hr_rd_s').click(function() {
window.open('gift.php', '_blank');
//automatically install Android app code goes here
});
<a href="#" class="hr_rd_s">
<span id="text15" class="answer">Left</span>
</a>
例如,如果用户在Android手机上,我希望应用程序自动安装在用户点击事件上。此页面仅向Android手机用户呈现。
答案 0 :(得分:1)
您无法自动安装Android应用。这将是一个巨大的安全问题。您可以链接到Google Play商店中用户必须安装的应用。也可以链接到Android installation file
答案 1 :(得分:0)
您可以使用JavascriptInterface
在Web / PHP / HTML / Javascript和本机Java之间进行通信。看看这个question and answer
然后从代码中,您可以将Intent
拨打Google Play到此应用HOWTO here。
当然没有用户确认,出于安全原因
,无法自动安装任何应用程序