Uri.解析弃用

本文关键字:Uri | 更新日期: 2023-09-27 18:05:51

我有一个条码扫描器应用程序。我试图扫描条码和搜索在谷歌。但是当我尝试搜索这里提到的,它说Uri.Parse() deprecated。我找不到任何有用的东西,Uri文档也没有说任何关于它的内容。

Uri文档

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

是否有其他选择或替代?

Uri.解析弃用

您引用的Uri来自System,其中ParseObsolete:

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

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

Android.Net.Uri uri = Android.Net.Uri.Parse("http://www.google.com/#q=fish");
var intent = new Intent(Intent.ActionView, uri);
StartActivity(intent);
相关文章:
  • 没有找到相关文章