我在冰淇淋三明治上遇到了 Astuetz Viewpager 的一个小问题。问题是,在滚动页面时,页面指示器和日期并没有消失/改变颜色。同样的寻呼机,在预蜂窝设备上,就像一个魅力。有人面临同样的问题吗?
问问题
222 次
1 回答
1
我找到了解决方案。
我一直在分析 Astuetz viewpager 库,发现滚动页面时不会调用包含日期和彩色底部边框的 textview 的 onDraw 方法。我们需要在扩展 textview 的父 onLayout 方法上调用 invalidate 方法。
像这样更改 ViewPagerTabs 类(在 for 循环中添加 tab.invalidate())
@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
final int count = getChildCount();
final int center = this.getMeasuredWidth() / 2;
// At this position, the centered tab will be highlighted via
// ViewPagerTab.setCenterPercent(int percent)
final int highlightOffset = this.getMeasuredWidth() / 5;
// lay out each tab
for (int i = 0; i < count; i++) {
final ViewPagerTab tab = (ViewPagerTab) getChildAt(i);
tab.invalidate();
final int tabCenter = tab.layoutPos + tab.getMeasuredWidth() / 2;
int diff = Math.abs(center - tabCenter);
if (diff <= highlightOffset) {
final int x1 = highlightOffset;
final int y = (int) 100 * diff / x1;
tab.setCenterPercent(100 - y);
} else {
tab.setCenterPercent(0);
}
tab.layout(tab.layoutPos, this.getPaddingTop(), tab.layoutPos + tab.getMeasuredWidth(), this.getPaddingTop()
+ tab.getMeasuredHeight());
}
}
于 2012-05-16T08:28:19.417 回答