I use android.support.v4.view.PagerTabStripin my application.
This is how I use tabIndicator
PagerTabStrip pagerTabStrip = (PagerTabStrip)
findViewById(R.id.pager_title_strip);
pagerTabStrip.setDrawFullUnderline(true);
pagerTabStrip.setTabIndicatorColor(Color.parseColor("#32CD32"));
My tab Pointer Height is pretty small. How can I set / increase its height, like the one that a Google game has?

source
share