vote up 0 vote down star

Given

Android.xml:

<activity android:name='.IconListActivity'
  android:label='@string/icon_list_activity_name'
/>

Strings.xml:

<string name='icon_list_activity_name>Icon List</string>

How do I access to the string 'Icon List' given IconListActivity.class?

flag

63% accept rate
Can you please give a use-case where you wish to do so? Maybe we can find a workaround. Also, whether the IconListActivity.class is in same apk or not? – bhatt4982 Sep 22 at 5:03
IconListActivity is an activity I'm writing while teaching myself Android programming. – Scott Sep 22 at 15:46

1 Answer

vote up 1 vote down check

PackageManager#getActivityInfo() returns an ActivityInfo structure, which has a labelRes and a name field, one of which should have what you need.

link|flag
Perfect! Exactly what I needed. Thanks! – Scott Sep 23 at 2:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.