I know it's possible to define a typed array of drawables in Android:
<array name="icons">
<item>@drawable/home</item>
<item>@drawable/settings</item>
<item>@drawable/logout</item>
</array>
Is it possible to have an array of custom objects such as Styleable ones (this syntax doesn't work, FYI)?
<array name="custom_objects">
<item>@styleable/home</item>
<item>@styleable/settings</item>
<item>@styleable/logout</item>
</array>