有没有办法将导航抽屉设置为始终可见

时间:2014-05-24 15:57:55

标签: android navigation-drawer

有没有办法将导航抽屉设置为始终可见?。

以便用户知道右侧/左侧有东西。

就像你在环聊应用中看到的一样。

我知道环聊使用 SlidePaneLayout ,但有人知道如何使用导航抽屉实现这一目标吗?

1 个答案:

答案 0 :(得分:0)

得到了!! .. 简洁至上。没有图书馆,没有复杂的代码。使用 SimplePaneLayout

只需将 android:layout_marginLeft 设置为合适的值即可。 :)太棒了:))

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

        <LinearLayout android:layout_width="match_parent"
                  android:layout_height="match_parent"
                  android:background="#CCC"
                  android:orientation="horizontal"
                  android:id="@+id/fragment_firstpane"/>

        <LinearLayout android:layout_width="match_parent"
                  android:layout_height="match_parent"
                  android:background="#000"
                  android:orientation="horizontal"
                  android:layout_marginLeft="40dp"
                  android:id="@+id/fragment_secondpane"/>

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