overridePendingTransition 动画效果

记录一个简单的界面出入动画效果.

先定义动画配置文件

// 从右侧滑动进入--show_in  
//  p表示以父层View为参照


    


//从右侧滑出--show_out


    

然后在Activity界面的加载和取消逻辑中添加动画效果

//进入时,从右侧滑入
 @Override
    protected final void onCreate(Bundle bundle) {
        super.onCreate(bundle);
        overridePendingTransition(R.anim.show_in, 0);   
    }

//退出时,从右侧滑出 
    @Override
    public void finish() {
        super.finish();
        this.overridePendingTransition(0, R.anim.show_out);
    }

除了xy轴平移动画外,还有其他动画效果:

// alpha xml 淡出效果
  
    
// rotate.xml 旋转效果: 
   
   
    


// scale.xml 缩放效果: 
   
   
  
  

// translate.xml 移动效果: 

你可能感兴趣的:(overridePendingTransition 动画效果)