Right to Left Menu Items of Navigation Drawer on Android

navigationView= (NavigationView) findViewById(R.id.navigationView);
ViewCompat.setLayoutDirection(navigationView,ViewCompat.LAYOUT_DIRECTION_RTL);

Or

<android.support.design.widget.NavigationView
android:layoutDirection="rtl"
android:id="@+id/navigation_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="right"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_main"
app:menu="@menu/activity_main_drawer" />

References
https://stackoverflow.com/questions/38848821/android-right-to-left-navigationdrawer-menu-items-arent-rtl
https://github.com/mhdr/AndroidSamples/tree/master/090