gpt4 book ai didi

c# - Uri.Parse 已弃用

转载 作者:太空狗 更新时间:2023-10-29 15:33:15 25 4
gpt4 key购买 nike

我有一个条形码扫描仪应用程序。我正在尝试扫描条形码并在谷歌搜索。但是当我尝试按照提到的方式进行搜索时 here , 它说 Uri.Parse() 已弃用。我找不到任何有用的东西,Uri 文档也没有说明任何相关内容。

Uri 文档

https://developer.android.com/reference/android/net/Uri.html

是否有其他选择或替代品?

最佳答案

您正在引用 System 中的 Uri,其中 ParseObsolete:

[ObsoleteAttribute("The method has been deprecated. It is not used by the system.
protected virtual void Parse()

您引用的 SO 问题是使用 Android.Net 命名空间中的 Uri:

Android.Net.Uri uri = Android.Net.Uri.Parse("http://www.google.com/#q=fish");
var intent = new Intent(Intent.ActionView, uri);
StartActivity(intent);

关于c# - Uri.Parse 已弃用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39326433/

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