单击网络 link 应用程序将打开
Clicking on the web link app will open
我正在尝试构建一个应用程序,如果我单击 link 我的应用程序(如果已安装)将 open.But 它不工作,不知道 why.It 总是重定向到 google.com
我的清单文件
<activity android:name=".DeeplinkingActivity"
android:label="@string/app_name"
android:exported="true"
android:launchMode="singleTop"
android:theme="@android:style/Theme.Holo.NoActionBar">
<intent-filter android:label="@string/app_name">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- Accepts URIs that begin with "http://example.com/soham" -->
<data android:scheme="http"
android:host="example.com"
android:pathPrefix="/soham" />
<data android:scheme="http"
android:host="www.example.com"
android:pathPrefix="/soham" />
</intent-filter>
</activity>
我的test.html
<a href="intent://scan/#Intent;scheme=http;package=soham.com.deeplinking;S.browser_fallback_url=http%3A%2F%2Fgoogle.com;end"></a>
我认为问题出在 html file.Any 帮助中?
试试这个:这适用于我的应用程序:
注意:在您的启动器 activity 标签中写入以下代码
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter android:label="@string/app_name" >
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- Accepts URIs that begin with "example://WRITE YOUR HOST NAME” -->
<data
android:host="index.html"
android:scheme="WRITE YOUR HOST NAME" />
</intent-filter>
<intent-filter android:label="@string/app_name" >
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- Accepts URIs that begin with "http://example.com/WRITE YOUR HOST NAME” -->
<data
android:host="WRITE YOUR HOST NAME.com"
android:pathPrefix="/index.html"
android:scheme="http" />
</intent-filter>
<intent-filter android:label="@string/app_name" >
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="WRITE YOUR HOST NAME" />
</intent-filter>
您的 link 不正确,您使用的是 Android Intents with Chrome example 的主机。您需要使用在AndroidManifest.xml
中配置的host
和pathPrefix
。
你的host
是example.com
,你的pathPrefix
是/soham
,link会变成:
<a href="intent://example.com/soham#Intent;scheme=http;package=soham.com.deeplinking;S.browser_fallback_url=http%3A%2F%2Fgoogle.com;end">Deeplink</a>
我正在尝试构建一个应用程序,如果我单击 link 我的应用程序(如果已安装)将 open.But 它不工作,不知道 why.It 总是重定向到 google.com
我的清单文件
<activity android:name=".DeeplinkingActivity"
android:label="@string/app_name"
android:exported="true"
android:launchMode="singleTop"
android:theme="@android:style/Theme.Holo.NoActionBar">
<intent-filter android:label="@string/app_name">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- Accepts URIs that begin with "http://example.com/soham" -->
<data android:scheme="http"
android:host="example.com"
android:pathPrefix="/soham" />
<data android:scheme="http"
android:host="www.example.com"
android:pathPrefix="/soham" />
</intent-filter>
</activity>
我的test.html
<a href="intent://scan/#Intent;scheme=http;package=soham.com.deeplinking;S.browser_fallback_url=http%3A%2F%2Fgoogle.com;end"></a>
我认为问题出在 html file.Any 帮助中?
试试这个:这适用于我的应用程序:
注意:在您的启动器 activity 标签中写入以下代码
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter android:label="@string/app_name" >
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- Accepts URIs that begin with "example://WRITE YOUR HOST NAME” -->
<data
android:host="index.html"
android:scheme="WRITE YOUR HOST NAME" />
</intent-filter>
<intent-filter android:label="@string/app_name" >
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- Accepts URIs that begin with "http://example.com/WRITE YOUR HOST NAME” -->
<data
android:host="WRITE YOUR HOST NAME.com"
android:pathPrefix="/index.html"
android:scheme="http" />
</intent-filter>
<intent-filter android:label="@string/app_name" >
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="WRITE YOUR HOST NAME" />
</intent-filter>
您的 link 不正确,您使用的是 Android Intents with Chrome example 的主机。您需要使用在AndroidManifest.xml
中配置的host
和pathPrefix
。
你的host
是example.com
,你的pathPrefix
是/soham
,link会变成:
<a href="intent://example.com/soham#Intent;scheme=http;package=soham.com.deeplinking;S.browser_fallback_url=http%3A%2F%2Fgoogle.com;end">Deeplink</a>