我希望NavigationView在某些情况下从右到左开始。所以我需要在运行时而不是xml设置navigationView layout_gravity。
<com.google.android.material.navigation.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="right"
android:background="@color/colorPrimary"
android:fitsSystemWindows="true">
</com.google.android.material.navigation.NavigationView>
我想从xml中删除此行
android:layout_gravity="right"
并使用Java进行设置