4

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

在此处输入图像描述

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

我以编程方式移动了滚动视图以与顶部对齐,因此标题条确实覆盖在滚动视图的顶部。在我尝试过的事情中(个人):

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 具有透明效果?

4

0 回答 0