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

Android在浏览器启动APP

时间:2016-01-17 09:44:23      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:



要想在浏览器启动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" />
</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

标签:

原文地址:http://www.cnblogs.com/mengfanrong/p/5136763.html

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