blob: 87b20545a5447af998d900971b9550d03a3fb7b0 [file] [log] [blame]
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:lb="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layoutDirection="rtl"
>
<Button android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:text="button"
/>
<android.support.v17.leanback.widget.VerticalGridViewEx
android:id="@+id/gridview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_toEndOf="@id/button"
android:clipToPadding="false"
android:focusable="true"
android:focusableInTouchMode="true"
android:background="#00ffff"
lb:horizontalMargin="12dip"
lb:verticalMargin="24dip"
lb:numberOfColumns="1"
lb:columnWidth="150dip"
lb:focusOutSideStart="false"
lb:focusOutSideEnd="true"
android:paddingBottom="12dip"
android:paddingLeft="12dip"
android:paddingRight="12dip"
android:paddingTop="12dip" />
</RelativeLayout>