gpt4 book ai didi

android - 如何从我的 C# 代码中通过自定义 url 方案访问传递到我的应用程序中的值?

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

我正在开发一个 Xamarin Forms 应用程序。它有一个 Entry 字段用于初始页面上的访问代码。我需要扩展其功能,以便在遇到自定义 url 方案 myscheme://visitcode 时打开应用程序,并且 Entry 将具有其 Text 值预填充了 visitcode 的值。

我已成功启动应用程序。

我将我的方案添加到我的 iOS 项目中的 info.plist 文件中,当我在 iPhone 上的 Safari 中单击我的自定义 url 方案时,它会正确启动应用程序。

我在我的 Droid 项目中的 MainActivity 上方添加了以下行:

[IntentFilter(new[] { Intent.ActionView }, Categories = new[] { Intent.CategoryDefault, Intent.CategoryBrowsable }, DataScheme = "myscheme")]

当我在 Android 手机上的 Chrome 中点击我的自定义 url 方案时,它会正确启动应用程序。

唯一剩下的障碍是检索值并用它填充 Entry 字段。

有人可以帮助我吗?

最佳答案

Note: I haven't tested this yet, so make sure your app lifecycle and the place where you handle the events are matching the Xamarin.Forms app lifecycle. That is, make sure Xamarin.Forms.Application.Current is not null. If it is, reshuffle your code to work around that.

对于 iOS,您必须在 AppDelegate.cs 中覆盖 OpenUrl:

    public override bool OpenUrl (UIApplication application, NSUrl url, string sourceApplication, NSObject annotation);

Android 中,您在 MainActivity.csOnCreate 或任何其他用作入口点的方法中处理它:

var intent = Intent;
var uri = intent.Data;

这应该允许您检索 url 的参数。

然后您可以检索当前的 Xamarin.Forms Application 对象,方法是:

var myapp = Xamarin.Forms.Application.Current as MyApplication;

现在,由您来检索正确的条目、它的 View 模型、服务或任何连接点的东西。

关于android - 如何从我的 C# 代码中通过自定义 url 方案访问传递到我的应用程序中的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31417227/

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