[Android] TextSwitcher -- 做什麼的

來源:互聯網
上載者:User

標籤:android   animate   

TextSwitcherJava Doc是這樣描述自己的:

Specialized ViewSwitcher that contains only children of type TextView. A TextSwitcher is useful to animate a label on screen. Whenever setText(CharSequence) is called, TextSwitcher animates the current text out and animates the new text in.

由此可知,TextSwitcher:
- 有個TextView子視圖
- 在文本更新時,能夠讓舊文本淡出,新文本淡入,從而呈現平滑切換的動畫效果

如何使用TextSwitcher第1步:在layout中添加TextSwitcher控制項
    <TextSwitcher        android:id="@+id/ts"        android:layout_width="wrap_content"        android:layout_height="0dp"        android:layout_marginTop="20dp"        android:layout_weight="1" >    </TextSwitcher>
第2步:為TextSwitcher控制項設定工廠(用於生產視圖)
        mTs.setFactory(new TextSwitcher.ViewFactory() {            @Override            public View makeView() {                final TextView tv = (TextView) LayoutInflater.from(                        getApplicationContext()).inflate(R.layout.text, null);                return tv;            }        });
第3步:設定淡入淡齣動畫
        mTs.setInAnimation(AnimationUtils.loadAnimation(                getApplicationContext(), android.R.anim.fade_in));        mTs.setOutAnimation(AnimationUtils.loadAnimation(                getApplicationContext(), android.R.anim.fade_out));

之後,執行mTs.setText(txt)來切換文本時就會產生如下效果:

註:完整代碼在 GitHub

[Android] TextSwitcher -- 做什麼的

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.