o layout Android-overdraw permite o acesso através do LinearLayout

na interface do usuário a seguir eu tenho isso abaixo drabable sobrepondo a tela inteira. O LinearLayout é transparente e permite que os controles abaixo dele sejam clicáveis ​​ou palpáveis. Basicamente eu posso rolar uma lista abaixo deste LinearLayout, bem como clicar em controles. Como faço para desativar isso?

Veja o exemplo em anexo.

Obrigado

<code><RelativeLayout
     xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/rlExtNavbar" 
    android:orientation="vertical"
    android:layout_width="match_parent" 
    android:layout_height="match_parent"
    android:gravity="fill_vertical"
    android:layout_gravity="fill_vertical"
    android:background="@color/transparent" xmlns:tools="http://schemas.android.com/tools" tools:ignore="Overdraw">
    <RelativeLayout
        android:id="@+id/expandedNavbarLayout" 
        android:orientation="vertical"
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" >
    </RelativeLayout>
    <LinearLayout
        android:id="@+id/transparentLayout" 
        android:orientation="vertical"
        android:layout_width="match_parent" 
        android:layout_height="wrap_content"
        android:layout_below="@id/expandedNavbarLayout"
        android:focusableInTouchMode="false"
        android:focusable="false"
        android:background="@color/fulltransparent">
    </LinearLayout>

</RelativeLayout>
</code>

questionAnswers(3)

yourAnswerToTheQuestion