Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tab layout swipe direction

Can I change the swipe direction of Tabs in TabLayout by code?

It works fine when my device's language is English, But when I change it to Arabic, A lot of tabs disappear and the swipe's direction still the same (to The Right ). Note: In Manifest file support RTL option is "true".

like image 552
Maysara Alhindi Avatar asked Jan 02 '16 15:01

Maysara Alhindi


People also ask

What is a tab layout?

TabLayout provides a horizontal layout to display tabs. Population of the tabs to display is done through TabLayout.

Which layout is used to implement horizontal tabs?

A TabLayout provides a way to display tabs horizontally.


1 Answers

You can easily change layoutDirection. i had this problem too and fix by :

tabLayout.setLayoutDirection(View.LAYOUT_DIRECTION_LTR);

Just try it!

like image 169
Arash Hatami Avatar answered Oct 11 '22 22:10

Arash Hatami