Line coming between toolbar and Tabs

后端 未结 5 1562
隐瞒了意图╮
隐瞒了意图╮ 2021-01-19 04:34

How to remove the deep line between the toolbar and tablayout, I searched on the google someone said , add some elevation to the toolbar and tablayout ,I did but it not work

5条回答
  •  [愿得一人]
    2021-01-19 05:27

    I had same problem and used android:elevation="0dp" and app:elevation="0dp" but problem not solved.Then i changed the elevation of toolbar dynamically.By using this

    getSupportActionBar().setElevation(0);
    

    and it worked for me.

提交回复
热议问题