@Pieter Hulshoff I would like you to add one thing.
Example:
With the <menu> tag I have a horizontal carousel of game cover using images. With this I can define for example 5 items <item>. When I press left, I select the game to the left and the menu moves with an animation to the right.
I would like to create another horizontal menu in the same "menuIndex" with a carousel of 5 other items where you can put more information of each game.
All this for what? To be able to show 5 game covers, with the game logo under each game cover. When you select the next game (the one on your left) move to the right the game cover "<menu> <item>" and the game logo "other <menu> <item>"
And how could you implement it? In the following way:
It could be added inside Layout.xml
<! -- Console Collection -->
<! -- Menu where the logos of the consoles are displayed -->
<Menu menuIndex = "0">
<ItemDefaults />
<Item />
</Menu>
<! -- Game Collection -->
<! -- Menu where game covers are displayed -->
<Menu menuIndex = "1" imageType="cover">
<ItemDefaults />
<Item />
</Menu>
<! -- Menu where the logos are displayed -->
<Menu menuIndex = "1" imageType="logo">
<ItemDefaults />
<Item />
</Menu>
Adding "menuIndex and the number" we would be saying to which collection belongs that menu code and in this way we could see more than one menu item information.
To avoid having problems using more than one menu per collection, these would have to be all either horizontal or vertical.