Is it possible to have layout IDs inside arrays.xml. I tried the following but it doesn't work:
<integer-array name="layouts_list">
<item>R.layout.layout1</item>
<item>R.layout.layout2</item>
<item>R.layout.layout3</item>
<item>R.layout.layout4</item>
<item>R.layout.layout5</item>
</integer-array>
Any other alternatives for this ?
However, I can have an integer array inside the constants.java but just curious to know if anybody has done something similar to above.