如何使ViewPager标题条透明或半透明

时间:2014-11-01 12:08:37

标签: android android-viewpager transparent pagertitlestrip

下面的图片是当alpha值设置为0.5时PagerTitleStrip的样子:

enter image description here

我希望标题条是半透明的。相反,正如您所看到的,标题条根本不透明。即使我将alpha值设置为0,标题条也会缩小为视图寻呼机的相同背景颜色,但仍然阻挡下面的滚动视图。

我已经以编程方式移动了scrollview以与顶部对齐,因此标题条确实覆盖在scrollview的顶部。在我尝试过的事情中(单独):

titleStrip.setBackground(null)  // doesn't work
titleStrip.setAlpha(0)          // doesn't work
titleStrip.getBackground.setAlpha(0) // doesn't work

android:alpha="0.0"             // set in layout xml of title strip, doesn't work
android:visibility="invisible"  // this will give a solid background color

如何让pagerTitleStrip具有透明效果?

0 个答案:

没有答案