android 4.2.1 jelly bean 的导航视图无法正常工作

android Navigation view is not working fine for 4.2.1 jelly bean

android 当语言为阿拉伯语时,导航视图无法正常工作。这个问题只发生在 4.2.1 jelly bean 上。 icons.please 看一下屏幕截图
存在对齐问题

你应该把 android:supportsRtl="true" 放在你的应用程序标签中,并在你的活动中强制从右到左支持 activity 对于像这样的果冻豆:

         @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1) 
private void forceRTLIfSupported() { 
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1){      getWindow().getDecorView().setLayoutDirection(View.LAYOUT_DI‌​RECTION_RTL); 
} 
}