I am adding custom view to tablayout
for that I am using following linked method:
https://guides.codepath.com/android/google-play-style-tabs-using-tablayout
this is working fine. I am using com.android.support:design:23.1.1
, but when I update to com.android.support:design:23.3.0
there is a problem:
The custom view is visible but when I call
viewPager.getAdapter().notifyDataSetChanged();
then the custom view is no longer visible, IT'S GONE. Any idea what has changed in 23.3.0 that can affect this?
How can I solve this issue? The same code is working properly in 23.1.1 but not in 23.3.0.
23.3.0
has wrong colors in aNavigationView
. Downgraded to23.2.0
.. – Aleksandropol