TextSwitcher实现分析

上一篇博客《TextSwitcher实现文字上下翻牌效果》中我们知道了TextSwitcher的大致用法,那现在来看看TextSwitcher内部是如何实现文字交替的。

TextSwitcher 继承自 ViewSwitcher

使用TextSwitcher时,我们通过setFactory先给它设定了一个ViewFactory,这个在ViewSwitcher代码中

    /**
     * Sets the factory used to create the two views between which the
     * ViewSwitcher will flip. Instead of using a factory, you can call
     * {@link #addView(android.view.View, int, android.view.ViewGroup.LayoutParams)}
     * twice.
     *
     * @param factory the view factory used to generate the switcher's content
     */
    public void setFactory(ViewFactory factory) {
        mFactory = factory;
        obtainView();
        obtainView();
    }

这里面调用了两次obtainView(为什么是两次,一会说),obtainView代码如下

    private View obtainView() {
        View child = mFactory.makeView();
        LayoutParams lp = (LayoutParams) child.getLayoutParams();
        if (lp == null) {
            lp = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);
        }
        addView(child, lp);
        return child;
    }
它里面调用了Factory接口的方法makeView,用来创建内部视图,也就是,上一篇文章中 setFactory中实现的makeView方法,创建TextView,用来显示文字。


当我们对TextSwitcher使用setText设置文字时,看看TextSwitcher干了什么

    /**
     * Sets the text of the next view and switches to the next view. This can
     * be used to animate the old text out and animate the next text in.
     *
     * @param text the new text to display
     */
    public void setText(CharSequence text) {
        final TextView t = (TextView) getNextView();
        t.setText(text);
        showNext();
    }
每次setText,都会去获取一个TextView,那么如果是调用上万次的setText,难道要创建上万个TextView吗,谷歌怎么会这么笨!

看下面。


它通过getNextView来获取一个内部的TextView,getNextView在ViewSwitcher中

    /**
     * Returns the next view to be displayed.
     *
     * @return the view that will be displayed after the next views flip.
     */
    public View getNextView() {
        int which = mWhichChild == 0 ? 1 : 0;
        return getChildAt(which);
    }

这里我们看到了一个小技巧,int which = mWhichChild == 0 ? 1 : 0; 这个返回不是0,就是1,也就是说,Swithcer内部就有两个视图,也就是 setFactory中为什么会调用两次obtainView的原因了,它要创建两个内部视图,作为切换,就像开关一样。

ViewSwitcher 继承自 ViewAnimator,所以它可以支持动画,我们通过setInAnimation和setOutAnimation进行进和出的动画效果。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

bdmh

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值