码迷,mamicode.com
首页 > 移动开发 > 详细

Android在浏览器启动APP

时间:2014-07-29 14:55:38      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:android   style   http   使用   os   io   cti   html   



要想在浏览器启动APP的方法如下:


在需要跳转的ACTIVITY中添加intent-filter的相关信息:


<intent-filter>
    <data android:scheme="com.example.scheme" />
</intent-filter>


实例如下:
<activity android:name=".BrowActivity" >
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
   <data android:scheme="com.example.scheme" />
   <action android:name="android.intent.action.VIEW" />
</intent-filter>
     </activity>
 
 
 
然后再HTML添加如下链接即可:<a href="my.special.scheme://other/parameters/here">


进入APP之后,可以使用getIntent()来获取URL携带的相关信息:


EG:http://twitter.com/status/1234
Uri data = getIntent().getData();
String scheme = data.getScheme(); // "http"
String host = data.getHost(); // "twitter.com"
List<String> params = data.getPathSegments();
String first = params.get(0); // "status"
String second = params.get(1); // "1234"

Android在浏览器启动APP,布布扣,bubuko.com

Android在浏览器启动APP

标签:android   style   http   使用   os   io   cti   html   

原文地址:http://blog.csdn.net/ljz2009y/article/details/38233759

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!