安卓uc浏览器网页url无法获取怎么办

安卓uc浏览器网页url无法获取怎么办,第1张

点击浏览器中的URL链接,启动特定的App。

首先做成HTML的页面,页面内容格式如下:

<a href="[scheme]://[host]/[path][query]">启动应用程序</a>

这一句就可以了。

各个项目含义如下所示:

scheme:判别启动的App。 ※详细后述

host:适当记述

path:传值时必须的key ※没有也可以

query:获取值的Key和Value ※没有也可以

作为测试好好写了一下,如下:

<a href="myapp://jpapp/openwithname=zhangsan&age=26">启动应用程序</a>

接下来是Android端。

首先在AndroidManifestxml的MAIN Activity下追加以下内容。(启动Activity时给予)

※必须添加项

<intent-filter>

<action android:name="androidintentactionVIEW"/>

<category android:name="androidintentcategoryDEFAULT" />

<category android:name="androidintentcategoryBROWSABLE" />

<data android:scheme="myapp" android:host="jpapp" android:pathPrefix="/openwith"/>

</intent-filter>

HTML记述的内容加入<data …/>。

其中必须的内容仅scheme,没有其他内容app也能启动。

※注意事项:intent-filter的内容androidintentactionMAIN和 androidintentcategoryLAUNCHER这2个,不能与这次追加的内容混合。

所以,如果加入了同一个Activity,请按以下这样做,否则会导致应用图标在桌面消失等问题。

<intent-filter>

<action android:name="androidintentactionMAIN"/>

<category android:name="androidintentcategoryLAUNCHER" />

</intent-filter>

<intent-filter>

<action android:name="androidintentactionVIEW"/>

<category android:name="androidintentcategoryDEFAULT" />

<category android:name="androidintentcategoryBROWSABLE" />

<data android:scheme="myapp" android:host="jpapp" android:pathPrefix="/openwith"/>

</intent-filter>

这样的话,没有问题。

接下来在Activity中需要取值的地方添加以下代码,我是直接写在OnCreate函数里的:

Intent i_getvalue = getIntent();

String action = i_getvaluegetAction();

if(IntentACTION_VIEWequals(action)){

Uri uri = i_getvaluegetData();

if(uri != null){

String name = urigetQueryParameter("name");

String age= urigetQueryParameter("age");

}

}

这样就能获取到URL传递过来的值了。

PackageManager mPackageManager = getPackageManager();

mPackageManagergetInstalledPackages(PackageManagerGET_UNINSTALLED_PACKAGES );

这样就获取到了系统上面所有的app

那么如何获取到非系统的app呢?

其实很简单,我们只需要做个简单的判断就行了,如:

final PackageInfo packageInfo = mPackageInfoListget(i);

if ((packageInfoapplicationInfoflags & ApplicationInfoFLAG_SYSTEM) == 0) {

//添加自己的代码即可

以上就是关于安卓uc浏览器网页url无法获取怎么办全部的内容,包括:安卓uc浏览器网页url无法获取怎么办、如何直接在安卓手机上读取app中打开的网页的url、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9626581.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-30
下一篇 2023-04-30

发表评论

登录后才能评论

评论列表(0条)

保存