千才

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::

activity实现淡入淡出效果
必须在 StartActivity()  或 finish() 之后立即调用。
overridePendingTransition(R.anim.push_right_in, R.anim.push_right_out); <?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android"> <translate android:fromXDelta="-100%" android:toXDelta="0" android:duration="300" /> </set> <?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" /> </set>

  

posted on 2014-03-10 16:28  左木右学 ...  阅读(223)  评论(0)    收藏  举报