使用浏览器启动应用程序?

时间:2010-10-13 05:23:29

标签: android

我想通过点击浏览器中的链接在手机中启动应用程序..我该怎么办?

2 个答案:

答案 0 :(得分:2)

让您的应用程序响应清单文件中描述的定制意图,如下所示:

<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" android:host="myserver.com" android:pathPrefix="/directory"/>

然后,您的应用会响应链接http://myserver.com/directory

在您的活动中,您可以通过在意图上调用.getData来获取网址。

答案 1 :(得分:0)

正如Jean描述编写自己的意图过滤器是可行的方法,但您可能希望根据您的应用名称使用自己的私有方案,因为内置浏览器可能会在很多情况下拦截http。

<activity android:name=".main"
    android:label="@string/app_name"
    android:theme="@android:style/Theme.NoTitleBar"
    android:configChanges="orientation|keyboardHidden"
    android:launchMode="singleTask"
    android:screenOrientation="portrait"
    android:windowSoftInputMode="adjustPan">
<intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<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="helloworld" />
</intent-filter>

然后在html中触发它:

<a href="helloworld://somedata/urlformated">Click here to launch app</a>

要访问您的活动onResume中的网址数据,请执行以下操作:

Uri launchURI = getIntent().getData();

您可以使用各种Uri方法解析数据。请记住,即使正常启动也会有意图,因此您需要处理该情况。在onResume中执行此操作既支持您的应用已经投放又已启动的情况。