Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sliding tab layout for right to left languages

I'm using SlidingTabLayout and i want to slide tabs from right to left, but i can't find a way.

I already try 'setGravity()' method but it doesn't work.

like image 614
Farzad Farazmand Avatar asked Jan 28 '15 12:01

Farzad Farazmand


1 Answers

Maybe you need try layout mirroring:

To take advantage of RTL layout mirroring, simply make the following changes to your app:

  1. Declare in your app manifest that your app supports RTL mirroring. Specifically, add android:supportsRtl="true" to the element in your manifest file.

  2. Change all of your app's "left/right" layout properties to new "start/end" equivalents. If you are targeting your app to Android 4.2 (the app's targetSdkVersion or minSdkVersion is 17 or higher), then you should use “start” and “end” instead of “left” and “right”. For example, android:paddingLeft should become android:paddingStart. If you want your app to work with versions earlier than Android 4.2 (the app's targetSdkVersion or minSdkVersion is 16 or less), then you should add “start” and end” in addition to “left” and “right”. For example, you’d use both android:paddingLeft and android:paddingStart.

like image 53
Xcihnegn Avatar answered Oct 17 '22 10:10

Xcihnegn