开发者

Append string to activity's android:label

开发者 https://www.devze.com 2023-04-02 01:47 出处:网络
Is it possible to append a string to an activity\'s android:label attribute in the AndroidManifest.xml file, if I\'m using a value from the string.xml file?I\'d like to append my 开发者_高级运维app\'s

Is it possible to append a string to an activity's android:label attribute in the AndroidManifest.xml file, if I'm using a value from the string.xml file? I'd like to append my 开发者_高级运维app's name to each activity's title/label, ie:

 <activity android:name=".Activity1" android:label="@string/app_name + "-" + Main Activity">

So the title/label of the activity would display as:

App Name - Main Activity

and another would be:

 <activity android:name=".Activity2" android:label="@string/app_name + "-" + Another Activity">

Which would display as:

App Name - Another Activity


No, it is not possible. You will have to create those strings manually in your strings.xml file. You can't concatenate those strings in the strings.xml file either.

0

精彩评论

暂无评论...
验证码 换一张
取 消