• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    HTML5打开本地app应用的方法

    本文为大家分享了HTML5打开本地app应用的方法,具体内容如下

    首先为了保证能够打开你的app,你必须要在androidManifest.xml中配置的filter中data的属性表述。<data android:pathprefix="/taoge/open" android:scheme="xttblog"></data> androidManifest.xml代码如下:

    XML/HTML Code复制内容到剪贴板
    1. <?xml version="1.0" encoding="utf-8"?>  
    2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"  
    3.     package="com.taoge"  
    4.     android:versionCode="2"  
    5.     android:versionName="3.24.03" >  
    6.     <uses-sdk  
    7.         android:minSdkVersion="8"  
    8.         android:targetSdkVersion="17" />  
    9.     <application  
    10.         android:allowBackup="true"  
    11.         android:configChanges="orientation|screenSize"  
    12.         android:icon="@drawable/logo"  
    13.         android:label="@string/app_name"  
    14.         android:logo="@drawable/logo"  
    15.         android:sharedUserId="android.uid.system"  
    16.         android:theme="@android:style/Theme.Light.NoTitleBar" >  
    17.         <activity  
    18.             android:name="xttblog.WelcomeActivity"  
    19.             android:excludeFromRecents="true"  
    20.             android:screenOrientation="portrait"  
    21.             android:theme="@android:style/Theme.Light.NoTitleBar" >  
    22.             <intent-filter>  
    23.                 <action android:name="android.intent.action.MAIN" />  
    24.                 <category android:name="android.intent.category.LAUNCHER" />  
    25.             </intent-filter>  
    26.             <intent-filter>  
    27.                 <action android:name="android.intent.action.VIEW" />  
    28.                 <category android:name="android.intent.category.BROWSABLE" />  
    29.                 <category android:name="android.intent.category.DEFAULT" />  
    30.                 <data android:pathPrefix="/taoge/open"  
    31.                     android:scheme="xttblog" />  
    32.             </intent-filter>  
    33.         </activity>  
    34.         <activity  
    35.             android:name="xttblog.AntRepairActivity"  
    36.             android:label="@string/title_activity_ant_repair" >  
    37.         </activity>  
    38.     </application>  
    39. </manifest>  

    其次,你要在你的网页中访问xttblog://taoge/open。可以使用的元素有很多,如:script,iframe,img等。使用它们的src属性,访问xttblog://taoge/open。html5代码如下:

    XML/HTML Code复制内容到剪贴板
    1. <!DOCTYPE HTML>  
    2. <html>  
    3. <script>  
    4.  function openapp(){   
    5.   document.getElementById('xttblog').innerHTML='<iframe src="xttblog://taoge/open"></iframe>';   
    6.  }   
    7. </script>  
    8. <body>  
    9.  <div style="display:none;" id="xttblog"></div>  
    10.  <input type="button" value="打开app" onclick="openapp();">  
    11. </body>  
    12. </html>  

    以上就是本文的全部内容,希望对大家的学习有所帮助。

    上一篇:移动web模拟客户端实现多方框输入密码效果【附代码】
    下一篇:如何在网站上添加谷歌定位信息
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    HTML5打开本地app应用的方法 HTML5,打开,本地,app,应,用的,