我从xamarin下载了Activity Scene Transition示例应用程序,并在Visual Studio 2015中打开它,并尝试通过VS Emulator运行应用程序。
我收到错误"未知标识符:资源"在MainActivity.cs的第108行:
view = context.LayoutInflater.Inflate(Resource.Layout.grid_item, viewGroup, false);
我还没有更改任何代码,我只是将其标记为部署以在visual studio模拟器中执行应用程序。我在VS中没有收到任何错误,而且我没有收到任何构建错误,只有在加载时我才会收到此错误。
我有什么遗失的东西吗?
答案 0 :(得分:1)
来自https://stackoverflow.com/a/36409069
Xamarin.Android中存在一个长期调试问题,Visual Studio与检查静态类中的值有关。具体来说,如果在引用静态类(或具有静态成员的非静态类)的行上设置断点,则Visual Studio可能会将检查值显示为“未知标识符:[ClassName]”。
根据我的分析,结果是项目中类文件的位置决定了你是否会遇到这个问题。
对我而言,结果是,在Xamarin修复错误之前,所有静态类和具有静态成员的类都应该放在项目的根文件夹中。还有其他文件放置选项,但有些扁平放置不起作用,并且需要使用命名空间完全限定静态类调用 - 即使编译器不需要。
有关详细信息,请参阅下面代码中的注释。
MainActivity.cs
using System;
using Android.App;
using Android.OS;
namespace App1 {
[Activity(Label = "Unknown Identifier Test", MainLauncher = true)]
public class MainActivity : Activity {
protected override void OnCreate(Bundle bundle) {
base.OnCreate(bundle);
Console.WriteLine(MyClass.MyString); // Unqualified
Console.WriteLine(App1.MyClass.MyString); // Fully Qualified with namespace
/*
Set a break point on the "Console.WriteLine()" lines above and you'll get the
"Unknown identifier: MyClass" error when trying to inspect under specific conditions...
File Locations Unqualified Fully Qualified
------------------------------------------------- --------------------- --------------------
MainActivity.cs in root, MyClass.cs in sub-folder "Unknown identifier" Inspection Works
MainActivity.cs in sub-folder, MyClass.cs in root Inspection Works Inspection Works
Both in root Inspection Works Inspection Works
Both in different sub-folders "Unknown identifier" "Unknown identifier"
Both in same sub-folder "Unknown identifier" "Unknown identifier"
*/
}
}
}
MyClass.cs
namespace App1 {
public static class MyClass {
public static string MyString;
}
// The class can also be constructed this way, which results in the same findings:
//public class MyClass {
// public static string MyString;
//}
}
2016年4月3日,我使用此信息更新了相关的Xamarin Bugzilla票证。希望他们很快得到解决。