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 -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -