我刚刚开始使用 VS2012 使用 Xamarin 创建一个简单的 android 应用程序。我知道有一种类型的资源只用于字符串。在我的资源文件夹中,我有一个这样的 xml 文件:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="RecordsTable">records</string>
<string name="ProjectTable">projects</string>
<string name="ActivitiesTable">activities</string>
</resources>
在我的代码中,我想使用这些资源的值,例如:
string recordTable = Resource.String.RecordsTable; //error, data type incompatibility
我知道它 Resource.String.<key>
返回一个整数,所以我不能使用上面的代码。我希望该recordTable
变量的值为records
.
有没有办法可以将这些资源字符串的值用于我的代码的字符串变量?