码迷,mamicode.com
首页 > 移动开发 > 详细

webapp通过JS代码与移动APP交互

时间:2015-11-05 13:40:25      阅读:329      评论:0      收藏:0      [点我收藏+]

标签:

复制地址:http://blog.csdn.net/sky_monkey/article/details/22938125

<span style="font-size:18px;"><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>  
<img src=images/start.png alt=打开APP onclick=startAPP() ></img>
<img src=images/download.png alt=打开APP onclick=downloadAPP() ></img>
<img src=images/welcome.png alt=打开APP onclick=startAPP() ></img>
</body></html>


在app里面需要做以下设置(一般是在manifest.xml文件的activity的 intent filter里面)

    <span style="font-size:18px;"><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></span> 

webapp通过JS代码与移动APP交互

标签:

原文地址:http://my.oschina.net/686991/blog/526432

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!