1
我在我的Xamarin項目中的某項活動中擁有此屬性,並且我想獲得Label的價值,即「Requirements」。我怎麼做?Android/Xamarin:如何獲取當前活動的標籤值?
[Activity(Label = "Requirements", Icon = "@drawable/icon", Theme = "@style/MyTheme")]
我在我的Xamarin項目中的某項活動中擁有此屬性,並且我想獲得Label的價值,即「Requirements」。我怎麼做?Android/Xamarin:如何獲取當前活動的標籤值?
[Activity(Label = "Requirements", Icon = "@drawable/icon", Theme = "@style/MyTheme")]
所以this stackoverflow問題顯示如何在Android本機中執行此操作。在C#中Xamarin,你可以做這樣的:
var component = new ComponentName(this, Class.FromType(typeof(MainActivity)));
var activityInfo = PackageManager.GetActivityInfo(component, 0);
var label = activityInfo.NonLocalizedLabel;
這[上Xamarin論壇文章(http://forums.xamarin.com/discussion/comment/69571)可以幫助你 –