Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can anyone explain the question mark means in Android XML attributes?

<TextView    
    style="?android:attr/windowTitleStyle"
    More attributes
/>
share|improve this question

1 Answer

up vote 34 down vote accepted

The question mark means it's a reference to a resource value in the currently applied theme. See the linuxtopia Android Dev Guide or the android.com Dev Guide for more about it.

\? escapes the question mark.

share|improve this answer
3  
I think it would be better to point your second link to: developer.android.com/guide/topics/resources/… – Casebash May 3 '10 at 4:39
3  
Dev Guide articles have been restructured, this is the new direct link: developer.android.com/guide/topics/resources/… – mernen Mar 30 '11 at 6:53
@mernen, thanks, I've updated the answer link. – jball Mar 30 '11 at 14:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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