溫馨提示×

溫馨提示×

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

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

Android中怎么打開本地應(yīng)用

發(fā)布時間:2021-07-20 15:06:39 來源:億速云 閱讀:391 作者:Leah 欄目:web開發(fā)

Android中怎么打開本地應(yīng)用,相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

1、在html中設(shè)置鏈接

代碼如下:


href=”[scheme]://[host]/[path]?[query]”

scheme可以自己在app內(nèi)部設(shè)置成任意的,把android和ios的設(shè)置成一樣的
2、若本地應(yīng)用存在,直接打開app;若不存在,計時一段時間跳到appstore
需要判斷ios還是android平臺下的瀏覽器,需要判斷微信瀏覽器

XML/HTML Code復(fù)制內(nèi)容到剪貼板

  1. <code class="hljs" javascript="">var openApp = function () {    

  2. var btnOpenApp = document.getElementById(open-app);    

  3. btnOpenApp.onclick = function () {    

  4. //打開本地應(yīng)用函數(shù)    

  5. var open=function(url){    

  6. var timeout;    

  7. function try_to_open_app() {    

  8. timeout = setTimeout(function(){    

  9. window.location.href=url;    

  10. console.log()    

  11. }, );    

  12. }    

  13. try_to_open_app();    

  14. }    

  15. if (/android/i.test(navigator.userAgent)) {    

  16. //alert(This is Android'browser.);//這是Android平臺下瀏覽器    

  17. if (/MicroMessenger/i.test(navigator.userAgent)) {    

  18. alert(This is MicroMessenger browser,請使用本地瀏覽器打開);//這是微信平臺下瀏覽器    

  19. }    

  20. else {    

  21. open(andorid應(yīng)用市場url);    

  22. }    

  23. }    

  24. if (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent)) {    

  25. //alert(This is iOS'browser.);//這是iOS平臺下瀏覽器    

  26. if (/MicroMessenger/i.test(navigator.userAgent)) {    

  27. alert(微信內(nèi)置瀏覽器不支持打開本地應(yīng)用,請點擊右上角使用本地瀏覽器打開);//這是微信平臺下瀏覽器    

  28. }    

  29. else {    

  30. open(ios應(yīng)用市場url);    

  31. }    

  32. }    

  33. };    

  34. }</code>   

 Android配置

XML/HTML Code復(fù)制內(nèi)容到剪貼板

  1. <activity android:name=".ui.UploadActivity" android:screenorientation="portrait">    

  2. <intent-filter>    

  3. <data android:scheme="http" android:host="192.168.167.33" android:port="8088" android:path="/mi-tracker-web/download.html">    

  4. <action android:name="android.intent.action.VIEW">    

  5. <category android:name="android.intent.category.DEFAULT">    

  6. <category android:name="android.intent.category.BROWSABLE">    

  7. </category></category></action></data></intent-filter>    

  8. </activity>   

Open Application

XML/HTML Code復(fù)制內(nèi)容到剪貼板

  1. <%@ page language="java" contentType="text/html; charset=ISO-8859-1"    

  2. pageEncoding="ISO-8859-1"%>    

  3. <script type="text/javascript"> window.location="market://search?q=com.singtel.travelbuddy.android";</script>    

  4. String str = "market://details?id=" + getPackageName();    

  5. Intent localIntent = new Intent("android.intent.action.VIEW");    

  6. localIntent.setData(Uri.parse(str));    

  7. startActivity(localIntent);   

HTML配置示例
Open app
Open Market
Open Market Details
Android獲取參數(shù):

XML/HTML Code復(fù)制內(nèi)容到剪貼板

  1. Uri uri = getIntent().getData(); String test1uri.getQueryParameter("arg0"); String test2uri.getQueryParameter("arg1");    

  2. webView.setWebViewClient(new WebViewClient(){    

  3. @Override    

  4. public boolean shouldOverrideUrlLoading(WebView view, String url) {    

  5. Uri uri=Uri.parse(url);    

  6. if(uri.getScheme().equals("m")&&uri.getHost().equals("my.com")){    

  7. String arg=uri.getQueryParameter("arg");    

  8. String arg=uri.getQueryParameter("arg");    

  9. }else{    

  10. view.loadUrl(url);    

  11. }    

  12. return true;    

  13. }    

  14. });  

看完上述內(nèi)容,你們掌握Android中怎么打開本地應(yīng)用的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細節(jié)

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

AI