android – 利用View自身的setAnimation來實現動畫。

來源:互聯網
上載者:User

最近,在做一個程式要實現切換到下一項時要有動畫的效果。使用ViewFlipper 、TextSwitcher都沒有辦法達到效果,無意中發現TextView中有一個setAnimation的函數。調試了一下效果還不錯,程式也很簡單。

public void UpdateViewContent(){    TextView txtview = (TextView)findViewById(R.id.content_view);    txtview.setText(MyGetNextText());    txtview.setAnimation(AnimationUtils.loadAnimation(this, R.anim.push_left_in));}

push_left_in.xml的內容如下:

<?xml version="1.0" encoding="utf-8"?><set xmlns:android="http://schemas.android.com/apk/res/android"><translate android:fromXDelta="0" android:toXDelta="100%" android:duration="300"/><alpha android:fromAlpha="1.0" android:toAlpha="0.0" android:duration="300" /></set>

加上手勢或按鈕調用UpdateViewcontent()就可以實現切換動畫。

程式簡單,效果還不錯。比起ViewFlipper和TextSwitch的用法簡單了許多。

另外,ImageView、ListView中也有setAnimation的函數,也可以使用上面的方法來實現簡單的切換動畫效果。

該實列中最關鍵的代碼是:

txtview.setAnimation(AnimationUtils.loadAnimation(this,R.anim.push_left_in));

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.