我收到一条错误消息,因为我在同一个类中有以下两行代码: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...
- 1 回答
- 0 关注
- 101 浏览
添加回答
举报
0/150
提交
取消