I am trying to create a custom title layout but I'd still want to use the activity's original label text. Is there a way to reference the window title (label attribute) in my custom title xml? Thanks.

link|improve this question

What do you mean by a custom title layout? – Manish Burman Aug 14 '11 at 5:18
feedback

1 Answer

up vote 0 down vote accepted

You can try to override Activity.onTitleChanged() method. I've never tried this solution but it must work according to the Android source code.

link|improve this answer
OK - it works. A pure xml solution would be better but I am happy with this for now. – e_x_p Aug 14 '11 at 8:01
In theory, if a custom title contains a TextView with android:id=@android:id/title then it will be a pure xml solution. But it's only an assumption. – Pixie Aug 14 '11 at 8:31
Right but the custom title has already overridden the original so this doesn't work. – e_x_p Aug 14 '11 at 8:48
I don't understand what you mean. Have you tried this? I mean setting TextView's id to "@android:id/title"? – Pixie Aug 14 '11 at 15:53
Tried that. It doesn't display anything when placed into the title bar. – e_x_p Aug 14 '11 at 16:18
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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