Android : Navigation button show wrong side when layout direction is RTL
问题 I asked this question before (here) but nobody answered so I ask It a little bit simpler. The problem is when I change the layout direction to RTL (in xml file : android:layoutDirection="rtl" or programmatically : if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1){ getWindows().getDecorView().setLayoutDirection(View.LAYOUT_DIRECTION_RTL); } doesn't matter) the navigation icon remain LTR How can I fix this issue? To be more specific the arrow should point at right! 回答1: In the