I have a view with a back button, a previous and a next button, and a
grid of data. When I lay out the buttons so that all the buttons are
full width, and from top to bottom the page is back button, previous,
next, grid, then everything works fine.
CODE
+-------------+
| back button |
+-------------+
| prev |
+-------------+
| next |
+-------------+
| grid cell 1 |
+-------------+
...
+-------------+
| grid cell N |
+-------------+
When I make the previous and next buttons be half width, and lay the
page out like
CODE
+-------------+
| back button |
+------+------+
| prev | next |
+------+------+
| grid cell 1 |
+-------------+
...
+-------------+
| grid cell N |
+-------------+
Then I have focus issues.
The first time I enter the view focus is on the previous button.
Hitting down takes me into the grid. Hitting up takes me up from the
grid to the back button, skipping over the previous and next buttons.
Down from the back button takes me into the grid. I have to reinstall
the application on the TV to get back to the prev or next buttons.
What am I doing wrong?