Android的Fragment的自訂轉場動畫

來源:互聯網
上載者:User

標籤:animation   spec   ack   部落格   res   class   move   事務   設定   

Fragment間轉場可以使用setTransition()來設定系統預設的轉場動畫,也可以使用setCustomAnimations()方法來自訂轉場動畫。

getFragmentManager().beginTransaction()                //An optional name for this back stack state, or null.addToBackStack()方法的參數如前面所說也可以為null                .addToBackStack(null)//將替換的前一個事務添加的有Activity管理的返回棧中                //通過setCustomAnimation()方法來自訂Fragment間的過渡動畫,前兩個參數代表進入Fragment的動畫效果,後兩個參數代表退出Fragment的動畫效果                .setCustomAnimations(R.anim.slide_in_right, R.anim.hold,R.anim.hold,R.anim.slide_out_right)                .remove(this)//移除原來的Fragment                .replace(R.id.content_2, fragment)                .commit();

 

abstractFragmentTransaction setCustomAnimations(int enter, int exit, int popEnter, int popExit)

Set specific animation resources to run for the fragments that are entering and exiting in this transaction.

abstractFragmentTransaction setCustomAnimations(int enter, int exit)

Set specific animation resources to run for the fragments that are entering and exiting in this transaction.

參考 官方文檔  部落格

Android的Fragment的自訂轉場動畫

相關文章

聯繫我們

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