The following shows what a PagerTitleStrip looks like when the alpha value is set to 0.5:

I expect the title to be translucent. Instead, as you can see, the title is not transparent at all. Even if I set the alpha value to 0, the title bar will simply decrease to the same background color of the view pager, but it still blocks the scroll below.
I programmatically moved the scrollview to align with the top, so the title bar does overlap over the scrollbar. Among the things I tried (individually):
titleStrip.setBackground(null)
titleStrip.setAlpha(0)
titleStrip.getBackground.setAlpha(0)
android:alpha="0.0"
android:visibility="invisible"
How can I make pagerTitleStrip have a transparent effect?