通過網頁的JS程式碼啟動移動APP
阿新 • • 發佈:2018-11-14
少扯淡,直接上程式碼:
<script>
function startAPP(){
window.location = "**://**.**/**";
}
function downloadAPP(){
window.location = "http://IP/**/**.apk";
}
</script>
<style type="text/css">
body{background:#D2D460;text-align:center;margin-top:10%}
div{width:100%;margin:0 auto;background:#fff;text-align:left;}
</style>
</head>
<body>
<?php
$var_name = $_GET["isappinstalled"];
if ($var_name=="1"){
echo '<img src=images/start.png alt=開啟APP onclick=startAPP() ></img>';
}else if ($var_name=="0"){
echo '<img src=images/download.png alt=開啟APP onclick=downloadAPP() ></img>';
}else{
echo '<img src=images/welcome.png alt=開啟APP onclick=startAPP() ></img>';
}
?>
</body>
在app裡面需要做以下設定(一般是在manifest.xml檔案的activity的 intent 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="**"
android:host="**.**"
android:pathPrefix="/**">
</data>
</intent-filter>