I am pretty new to Roku world. I smell like its a very simple and straight forward question, but was not able to figure out any solutions. Any help would be much appreciated.
I was trying to create a sample application which includes three button in the UI. So, I chose ButttonGroup to do this usecase.
<ButtonGroup id="btnGroup" layoutDirection="horiz"
visible="true" translation="[90,601]"
itemSpacings="[20,20]" minWidth="240"
maxWidth="240" buttonHeight="80">
<Button id="button1" text="" iconUri="" focusedIconUri=""
focusFootprintBitmapUri="pkg:"
focusBitmapUri="pkg"/>
<Button id="button2" text="" iconUri="" focusedIconUri=""
focusFootprintBitmapUri="pkg:"
focusBitmapUri="pkg:"/>
<Button id="button3" text="" iconUri="" focusedIconUri=""
focusFootprintBitmapUri="pkg:"
focusBitmapUri="pkg:"/>
</ButtonGroup>
The thing is that i am able to advance through this buttons with "up" and "down" key of the remote, where i actually need this to be done with "left" and "right" key.
As i have set the layoutDirection value to horiz, i thought the advance and reverse key would automatically changes to "right" and "left" respectively. Doesn't seems like its working as expected. Am i missing something here? Please help.