在Android冰淇淋三明治上的Astuetz viewpager

时间:2012-05-15 08:23:06

标签: android android-viewpager

我在冰淇淋三明治上遇到了Astuetz Viewpager的小问题。 问题是,在滚动页面时,页面指示器和日期不会消失/改变颜色。 在预蜂窝设备上,同一个寻呼机就像一个魅力。 有人面临同样的问题吗?

1 个答案:

答案 0 :(得分:1)

我找到了解决方案。

我一直在分析Astuetz viewpager库,我发现在滚动页面时不会调用包含日期和彩色底部边框的textview的onDraw方法。我们需要在扩展textview的父onLayout方法上调用invalidate方法。

像这样更改ViewPagerTabs类(在for looop中添加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());

    }

}