Skip to content

Instantly share code, notes, and snippets.

@whit3hawks
Created April 28, 2015 06:15
Show Gist options
  • Save whit3hawks/7821bf47e97453574a2f to your computer and use it in GitHub Desktop.
Save whit3hawks/7821bf47e97453574a2f to your computer and use it in GitHub Desktop.
Function to apply native RTL support for your Android applications.
private void applyRTL(){
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1){
getWindow().getDecorView().setLayoutDirection(View.LAYOUT_DIRECTION_RTL);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment