gpt4 book ai didi

android - URL 方案在 Android 浏览器中不起作用

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:04:48 25 4
gpt4 key购买 nike

我需要在单击链接时打开我的应用程序。为此,我读到我必须使用 URL 方案。该链接的格式必须为 myapp://parameters。

我阅读了关于这个主题的所有帖子,但是当我发送一封包含“myapp://addUser/?id=22”的电子邮件并从 chrome(在我的手机上)打开时,它不可点击。

我的 list :

 <activity
android:name="com.example.SplashActivity"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<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="myapp" android:host="com.example"/>
</intent-filter>

</activity>

我的类(class):

公共(public)类 SplashActivity 扩展 FragmentActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash);
Intent intent = getIntent();

if (Intent.ACTION_VIEW.equals(intent.getAction())) {
Uri uri = intent.getData();
String id = uri.getQueryParameter("id");
}

}

测试代码的邮件内容:

myapp://addUser/?id=22

引用链接:

Make a link in the Android browser start up my app?

How to register some URL namespace (myapp://app.start/) for accessing your program by calling a URL in browser in Android OS?

https://legacy.madewithmarmalade.com/devnet/forum/custom-url-scheme-primarily-android-3

更新

我认为问题出在邮件正文上,但我不知道如何测试它。

最佳答案

在你的 list 中

    <action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="myapp" android:host="com.example"/>
</intent-filter>

你定义了android:host="com.example",所以你应该修改链接URL:

myapp://addUser/?id=22       //error
myapp://com.example/?id=22 //correct

然后它就可以工作了!!

关于android - URL 方案在 Android 浏览器中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22445799/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com