我在我的Xamarin项目中的一个活动中有这个属性,我想获得Label的值,这是"要求"。我该怎么做?
[Activity(Label = "Requirements", Icon = "@drawable/icon", Theme = "@style/MyTheme")]
答案 0 :(得分:1)
所以this stackoverflow问题显示了如何在Android原生中执行此操作。在C#for Xamarin你可以这样做:
var component = new ComponentName(this, Class.FromType(typeof(MainActivity)));
var activityInfo = PackageManager.GetActivityInfo(component, 0);
var label = activityInfo.NonLocalizedLabel;