Remove selection when clicked in tablayout

enter image description here

How to turn off this highlight when you click a tab. I searched for half an hour and could not understand. I am using tablayout.

+6
source share
2 answers

just set the background color to transparent or the background color to tablayout. Add the following code to the parent layout.

xmlns:app="http://schemas.android.com/apk/res-auto" 

And add the following to the tablayout.

 app:tabBackground="?attr/colorPrimary" android:background="?attr/colorPrimary" 

This will solve your problem. Tested in Android M.

+8
source

Add the following line to your XML:

 app:tabRippleColor="@android:color/transparent" 
+1
source

All Articles