I'm doing some parsing of Android's XML layout files. I'd like to reference Android's XML string constants rather than define my own. I can find the integer constants easily, just not the XML constants.
Where are these string constants located?
Update:
I'm looking for a literal string referencing values like android:LinearLayout
, android:layout_gravity
, android:layout_width
and any values associated with those attributes such as match_parent
, center
etc.