为了账号安全,请及时绑定邮箱和手机立即绑定

如何在同一个类中使用 Android.App.Application 和 Xamarin.

如何在同一个类中使用 Android.App.Application 和 Xamarin.

C#
慕尼黑5688855 2023-04-29 16:53:13
我收到一条错误消息,因为我在同一个类中有以下两行代码:using Xamarin.Forms; using Android.App;错误 CS0104:“应用程序”是“Android.App.Application”和“Xamarin.Forms.Application”之间的模糊引用 if (Device.RuntimePlatform == Device.Android)    deviceID = Settings.Secure.GetString(Application.Context.ContentResolver, Settings.Secure.AndroidId);如何使用 Android.App 执行代码?我需要设备 ID。我无法删除“使用 Xamarin.Forms;” 因为我在课堂上使用它。
查看完整描述

1 回答

?
森林海

TA贡献2011条经验 获得超2个赞

您可以为名称空间分配别名


using xf = Xamarin.Forms;

using aa = Android.App;


...


aa.Application.Context.ContentResolver...

或者您可以在代码中使用完全限定的命名空间


Android.App.Application.Context.ContentResolver...

或者global如果您的项目名称空间与另一个名称空间冲突,请使用关键字


global::Android.App.Application.Context.ContentResolver...


查看完整回答
反对 回复 2023-04-29
  • 1 回答
  • 0 关注
  • 101 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信