减小材料导航抽屉的尺寸

时间:2015-06-06 07:02:54

标签: android navigation-drawer material-design

我正在使用http://www.android4devs.com/2014/12/how-to-make-material-design-navigation-drawer.html

那么,我们如何减少这个抽屉的尺寸呢?

我的意思是这个抽屉尺寸:

enter image description here

到Telegram示例(完全相同):

enter image description here

1 个答案:

答案 0 :(得分:1)

将layout_width更改为所需大小

 <android.support.v7.widget.RecyclerView
        android:id="@+id/RecyclerView"
        android:layout_width="320dp"
        android:layout_height="match_parent"
        android:layout_gravity="left"

        android:background="#ffffff"
        android:scrollbars="vertical">

    </android.support.v7.widget.RecyclerView>
相关问题