改变杰克·沃顿的滴定仪所需的最少努力是多少?
当你在google play store上滑动时,会产生文本淡入效果。
在标签之间?我认为关键在于修改ondraw(),但这需要我弄清楚他的代码和数学。如果有更简单的解决办法,我更喜欢。
我也试过TitlePargerIndicator.SetFadingEdgelength(100),但似乎没什么用。我知道你必须做一个年龄指示器。设置水平方向是可行的,但是
仍然没有任何褪色的影响。
这是根据杰克的一个样本得出的代码:

public class SampleTitlesStyledMethods extends BaseSampleActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.simple_titles);

        mAdapter = new TestTitleFragmentAdapter(getSupportFragmentManager());

        mPager = (ViewPager)findViewById(R.id.pager);
        mPager.setAdapter(mAdapter);

        TitlePageIndicator indicator = (TitlePageIndicator)findViewById(R.id.indicator);
        mIndicator = indicator;
        indicator.setViewPager(mPager);

        final float density = getResources().getDisplayMetrics().density;
        indicator.setBackgroundColor(0x18FF0000);
        indicator.setFooterColor(0xFFAA2222);
        indicator.setFooterLineHeight(1 * density); //1dp
        indicator.setFooterIndicatorHeight(3 * density); //3dp
        indicator.setFooterIndicatorStyle(IndicatorStyle.Underline);
        indicator.setTextColor(0xAA000000);
        indicator.setSelectedColor(0xFF000000);
        indicator.setSelectedBold(true);

        //my code, doesn't seem to do anything though...
        indicator.setHorizontalFadingEdgeEnabled(true);
        indicator.setFadingEdgeLength(1000);
    }
}

最佳答案

我知道这是旧的,但你应该检查答案,它对我很有用

07-24 09:30