溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

HTML5怎么打開本地app應用

發(fā)布時間:2021-08-25 18:28:20 來源:億速云 閱讀:162 作者:chen 欄目:web開發(fā)

本篇內容介紹了“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>  

“HTML5怎么打開本地app應用”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI