Remove highlight on press in tablayout

前端 未结 2 1607
北荒
北荒 2021-01-05 07:52

How to disable this highlight on pressing the tab. I have been searching for half an hour and couldn\'t figure it out. I am using tablayout.

2条回答
  •  粉色の甜心
    2021-01-05 08:23

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

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

    And add the following to tablayout.

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

    This will solve your problem. Tested in Android M.

提交回复
热议问题