In my app user can chose in what side he'll have NavigationView
how set layout_gravity="end" programatically ?
<android.support.design.widget.NavigationView
android:id="@+id/main_navigation_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="#FFF"
>
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:divider="@color/light_grey"
android:dividerHeight="0.5dp">
</ListView>
</android.support.design.widget.NavigationView>
you can play with this: