例えばこんな感じに SlidingPaneLayoutマルチペインレイアウトを作るとするでしょ

<android.support.v4.widget.SlidingPaneLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/sliding_pane_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <fragment
        android:id="@+id/left"
        android:layout_width="240dp"
        android:layout_height="match_parent" />

    <FrameLayout
        android:id="@+id/right"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</android.support.v4.widget.SlidingPaneLayout>

これをスマートフォンで見たら、左側のペイン( @id/left ) を開いたときに右側のペイン( @id/right ) が 操作(スクロールやタッチ)できなくなるよね ( Navigation Drawer を開いたときみたいな)

でもタブレットで見たときは右ペインが操作できるんだ
凛はタブレットのときも操作不能にさせたいんだにゃ
つまりNavigation Drawerみたいにしたいにゃ

そこで、左ペインの layout_width を変える以外に操作不能にさせる方法を教えてほしいにゃ