2016-05-10 54 views

回答

0

尝试添加此:

android:layoutDirection="rtl" 

无论如何,如果你想使每一项活动方向RTL,我推荐你使用“超级活动”,并在使用本等级:

if (getWindow().getDecorView().getLayoutDirection() == View.LAYOUT_DIRECTION_LTR) { 
     getWindow().getDecorView().setLayoutDirection(View.LAYOUT_DIRECTION_RTL); 
    } 
+0

感谢您的回答。 –

+0

我使用了activity的onResume函数中的代码。但它不起作用。你能帮我么?谢谢 –

+0

将它附加到onCreate。 –