1<?xml version="1.0" encoding="utf-8"?> 2<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:id="@+id/browse_dummy" 4 android:layout_width="match_parent" 5 android:layout_height="match_parent" > 6 7 <android.support.v17.leanback.widget.BrowseFrameLayout 8 android:id="@+id/grid_frame" 9 android:focusable="true" 10 android:focusableInTouchMode="true" 11 android:descendantFocusability="afterDescendants" 12 android:layout_width="match_parent" 13 android:layout_height="match_parent" > 14 15 <FrameLayout 16 android:id="@+id/browse_grid_dock" 17 android:layout_width="match_parent" 18 android:layout_height="match_parent" /> 19 20 </android.support.v17.leanback.widget.BrowseFrameLayout> 21</FrameLayout> 22