2016-10-19 114 views
1

我在我的Xamarin項目中的某項活動中擁有此屬性,並且我想獲得Label的價值,即「Requirements」。我怎麼做?Android/Xamarin:如何獲取當前活動的標籤值?

[Activity(Label = "Requirements", Icon = "@drawable/icon", Theme = "@style/MyTheme")] 
+0

這[上Xamarin論壇文章(http://forums.xamarin.com/discussion/comment/69571)可以幫助你 –

回答

1

所以this stackoverflow問題顯示如何在Android本機中執行此操作。在C#中Xamarin,你可以做這樣的:

var component = new ComponentName(this, Class.FromType(typeof(MainActivity))); 
var activityInfo = PackageManager.GetActivityInfo(component, 0); 
var label = activityInfo.NonLocalizedLabel;