<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/guidedactions_root"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:transitionName="guidedactions_root"
    android:transitionGroup="false">
    <androidx.leanback.widget.NonOverlappingView
        android:id="@+id/guidedactions_list_background"
        android:background="?attr/guidedActionsBackgroundDark"
        android:visibility="gone"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:transitionName="guidedactions_list_background"/>
    <androidx.leanback.widget.GuidedActionsRelativeLayout
        android:id="@+id/guidedactions_content"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:transitionName="guidedactions_content"
        android:transitionGroup="false">
        <androidx.leanback.widget.VerticalGridView
            android:id="@+id/guidedactions_list"
            android:transitionGroup="true"
            style="?attr/guidedActionsListStyle"/>
        <androidx.leanback.widget.NonOverlappingView
            android:id="@+id/guidedactions_sub_list_background"
            android:background="?attr/guidedActionsBackgroundDark"
            android:visibility="gone"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_alignLeft="@+id/guidedactions_sub_list"
            android:layout_alignTop="@+id/guidedactions_sub_list"
            android:layout_alignRight="@+id/guidedactions_sub_list"
            android:layout_alignBottom="@+id/guidedactions_sub_list"
            android:transitionName="guidedactions_sub_list_background"/>
        <androidx.leanback.widget.VerticalGridView
            android:id="@+id/guidedactions_sub_list"
            android:visibility="invisible"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_marginTop="-1dp"
            android:transitionGroup="true"
            style="?attr/guidedSubActionsListStyle"/>
    </androidx.leanback.widget.GuidedActionsRelativeLayout>
</RelativeLayout>
