如何使用自定义 link 打开我的 Android 应用程序?
How can I open my Android app with a custom link?
我想通过 link 打开我的 android 应用程序,例如 WhatsApp 和 Telegram。
(示例)https://chat.whatsapp.com
如果我单击此 link 并安装了 WhatsApp,此 link 将打开 WhatsApp 那么我如何在我的应用程序中执行此操作?
首先你应该像这样在字符串文件中定义你的基础 URL :
<string name="base_url" translatable="false">yourapp.me</string>
之后你应该像这样在 Manifest 文件中定义一个 IntentFilter :
<activity android:name=".ExampleActivity">
<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="https" android:pathPrefix="/api" android:host="@string/base_url"/>
</intent-filter>
</activity>
所以你的link应该是这样的:
https://yourapp.me/api
当您单击此 link 时,它应该会在 activity 中打开您的应用,您将此 Intent 过滤器放入其中。
如果您想深入 link 您的应用。例如:您打开一个 link 并且它应该通过您的应用程序打开。在本例中,我使用了一个在您的应用中使用 webView
打开的网站。您当然可以自定义。
开始在您的 AndroidManifest.xml
中创建一个 <intent-filter>
:
<application
<activity
<intent-filter>
...
<action android:name="android.intent.action.VIEW"></action>
<category android:name="android.intent.category.DEFAULT"></category>
<category android:name="android.intent.category.BROWSABLE"></category>
<data android:scheme="https"
android:host="yourURL"></data>
...
</intent-filter>
</activity>
</application>
并且在你的 MainActivity.java
中编写以下代码以获取要在 webView
中设置的数据:
Uri uri = getIntent().getData();
if (uri!=null){
String path = uri.toString();
WebView webView = (WebView)findViewById(R.id.webView);
webView.loadUrl(path);
}
而你的 webView
定义在你的 activity_main.xml
:
<WebView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/webView"/>
就是这样。祝你好运!干杯:)
我想通过 link 打开我的 android 应用程序,例如 WhatsApp 和 Telegram。
(示例)https://chat.whatsapp.com
如果我单击此 link 并安装了 WhatsApp,此 link 将打开 WhatsApp 那么我如何在我的应用程序中执行此操作?
首先你应该像这样在字符串文件中定义你的基础 URL :
<string name="base_url" translatable="false">yourapp.me</string>
之后你应该像这样在 Manifest 文件中定义一个 IntentFilter :
<activity android:name=".ExampleActivity">
<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="https" android:pathPrefix="/api" android:host="@string/base_url"/>
</intent-filter>
</activity>
所以你的link应该是这样的:
https://yourapp.me/api
当您单击此 link 时,它应该会在 activity 中打开您的应用,您将此 Intent 过滤器放入其中。
如果您想深入 link 您的应用。例如:您打开一个 link 并且它应该通过您的应用程序打开。在本例中,我使用了一个在您的应用中使用 webView
打开的网站。您当然可以自定义。
开始在您的 AndroidManifest.xml
中创建一个 <intent-filter>
:
<application
<activity
<intent-filter>
...
<action android:name="android.intent.action.VIEW"></action>
<category android:name="android.intent.category.DEFAULT"></category>
<category android:name="android.intent.category.BROWSABLE"></category>
<data android:scheme="https"
android:host="yourURL"></data>
...
</intent-filter>
</activity>
</application>
并且在你的 MainActivity.java
中编写以下代码以获取要在 webView
中设置的数据:
Uri uri = getIntent().getData();
if (uri!=null){
String path = uri.toString();
WebView webView = (WebView)findViewById(R.id.webView);
webView.loadUrl(path);
}
而你的 webView
定义在你的 activity_main.xml
:
<WebView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/webView"/>
就是这样。祝你好运!干杯:)