I'm building an Android Wear application which I would like to present as a few pages that can be swiped across horizontally.
For this I am using a GridViewPager and associated FragmentGridPagerAdapter which is hardwired to use a single row. This is working fine for swiping horizontally between tiles, however in one of my fragments I want to use a WearableListView to allow the user to select between several actions. Unfortunately this does not work as it seems the GridViewPager is prevent any swipes getting to the WearableListView. Does anyone know if there is a way this can be done using the components described?
I have also tried using a standard ViewPager and this allowed the WearableListView to scroll fine, but the horizontal swiping then becomes flakey and you often need to swipe a few times to move the view pager.