android - How to Alias XML Arrays or Reference Them in Other Arrays? -


i have integer array set in values xml so:

<integer-array name="nums">     <item>1</item>     <item>2</item>     <item>3</item> </integer-array> 

i want able reference/alias other arrays in values so:

<integer-array name="@string/alias1">@integer-array/nums</integer-array> 

basically building hashmap inside xml. not programmatically within code itself. possible?


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -