Unable to see Tab Indicator in TabLayout design support library

前端 未结 6 1722
北海茫月
北海茫月 2021-02-07 14:38

I am using Material design library and creating layout using CoordinatorLayout ,AppBarLayout ,RecyclerView and TabLayout .

My issu

6条回答
  •  灰色年华
    2021-02-07 15:13

    I've just fixed this bug set background color programmatically

    tabLayout.setBackgroundColor(getResources().getColor(R.color.primary));
    

    or in xml

    android:background="@color/primary"
    

    But I don't know if there is any problem when you set background color this way

提交回复
热议问题