我正在尝试使用引力作为开始(android:layout_gravity="start"'
)
在以下代码中
但到目前为止还没有运气。
以下是布局:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="1"
android:scrollIndicators="none">
<android.support.design.widget.NavigationView
android:layout_width="90pt"
android:layout_height="440dp"
android:fitsSystemWindows="false"
android:layout_gravity="start"
app:menu="@menu/drawer_menu"
android:paddingTop="@dimen/abc_action_bar_content_inset_material"
android:touchscreenBlocksFocus="false">
</android.support.design.widget.NavigationView>
</LinearLayout>
答案 0 :(得分:0)
使用抽屉布局而不是线性布局。对于导航视图,父布局应始终为DrawerLayout。