My Project Screenshot: My Project
My Target Design: My Target
I have created a (right to left) navigation drawer. It\'s working fine but when I\'m trying to move
Add to your Activity before setContentView(R.layout.main_activity);:
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) { getWindow().getDecorView().setLayoutDirection(View.LAYOUT_DIRECTION_RTL); }
This is only possible on API 17+