先说实现步骤再说事理:

利用步骤

一,首先要给你要打开的运用中的activity设置过滤器(在清单文件里设置)

以JumpActivity为例

htmliframe在安卓Android 从网页中跳转到APP从微信打开本身的app并打开指定页面 AJAX
(图片来自网络侵删)

如下面的: <intent-filter> 中便是所需过滤器

<activity android:name=\公众.JumpActivity\"大众 > <intent-filter> <action android:name=\公众android.intent.action.VIEW\"大众 /> <category android:name=\"大众android.intent.category.DEFAULT\"大众 /> <category android:name=\公众android.intent.category.BROWSABLE\"大众 /> <!--下面所设置的质须要和html端对调--><!--在data里设置了 scheme和host,则该Activity可以吸收和处理类似于 \"大众sharetest://data/XXX\"大众的链接--> <data android:host=\"大众data\"大众 android:scheme=\"大众sharetest\"大众 /> </intent-filter> </activity> 二,在JumpActivity中做打开后的处理,用来吸收外部的跳转

public class JumpActivity extends Activity{ @Override protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); Intent intent = getIntent();//在这个Activity里,我们可以通过getIntent(),来获取外部跳转传过来的信息。
String data = intent.getDataString();//吸收到网页传过来的数据:sharetest://data/http://www.huxiu.com/ String[] split = data.split(\"大众data/\"大众);//以data/切割data字符串 url = split[1]; //就得到:http://www.huxiu.com/(这便是我们须要网页传给我们的数据)。


然后我们再通过网页打开app的同时就可以用得到的url数据做一些我们须要做的处理比如你在微信里浏览网页时打开自己的安卓app运用的同时,加载一个app内的网页 } } 三,我们须要找到html前端,让他们在网页中加入:

<iframe src=\公众\"大众 style=\公众display:none\"大众></iframe>如下:index.html<!DOCTYPE html> <html> <body> <iframe src=\公众sharetest://data/http://www.huxiu.com/\"大众 style=\"大众display:none\"大众></iframe> </body> </html> 将index.html放到Assets目录下,在代码里调用Webview加载该Html文件,代码如下:/网页打开app/public class H5ToAppActivity extends Activity { private String url; private WebView webview; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_h5_app); webview = (WebView) findViewById(R.id.webviewh5); url = \"大众file:///android_asset/index.html\"大众; WebSettings wSet = webview.getSettings(); wSet.setJavaScriptEnabled(true); webview.loadUrl(url); }}

这样实行以上代码时就可以打开对应的app了。

比如我的2048是一个网页,打开网页的时候可以同时打开其余一个运用

下面是两个运用截图你可以下载下来看下效果:(两个运用一起下)

2048网页演示apk:http://download.csdn.net/detail/qiushi_1990/9514778

网页打开的运用apk:http://download.csdn.net/detail/qiushi_1990/9514779

手机界面

这样在打开2048时会涌现下面效果

然后会跳转到下面运用

跳转成功

实现事理

最近,在利用QQ和微信等SDK来实现分享网页的时候,创造,SDK已经为页面跳转回运用供应了基本的数据支持。
我们只需在运用里和被分享的网页进行大略的设置,即可实现此功能。

那么我们先来看下网页跳转回运用的实现事理。

就Android平台而言,URI紧张分三个部分:scheme, authority and path。
个中authority又分为host和port。
格式如下:

scheme://host:port/path

举个实际的例子:

content://com.example.project:200/folder/subfolder/etc \---------/ \---------------------------/ \---/ \--------------------------/ scheme host port path \--------------------------------/ authority //现在大家该当知道data flag中那些属性的含义了吧,看下data flag <data android:host=\"大众string\"大众 android:mimeType=\"大众string\"大众 android:path=\公众string\"大众 android:pathPattern=\公众string\"大众 android:pathPrefix=\"大众string\"大众 android:port=\"大众string\公众 android:scheme=\"大众string\"大众 />

点击微信和QQ分享跳转到程序内部的事理与此同等。

写在后面:

由于微信在5.0.3往后就禁用了微信浏览器里打开别的app,以是上面的方法在微信里不能直接起浸染。
但是我们有补救方法,

1,通过跳转运用宝,来判断是否安装运用,如果安装运用宝会直接打开

2,勾引用户在浏览器里打开当前网页,由于微信虽然禁止了android:scheme跳转,但是浏览器都是支持的。

有任何关于编程的问题都可以私信我,我看到后会及时解答。

编程小石头,为分享干货而生!
听说,每个年轻上进,颜值又高的互联网人都关注了编程小石头。