Activity sliding from bottom to top but background activity should not moved

前端 未结 3 1953
温柔的废话
温柔的废话 2021-01-31 03:25

I am trying to slide an Activity from Bottom to Top which I am able to do.

But while sliding from bottom to top my background activity is also sliding to bottom. I want

3条回答
  •  时光取名叫无心
    2021-01-31 03:55

    slide_up.xml

    
    
    
        
    
    
    

    slide_down.xml

    
    
    
        
    
    
    

    stay.xml

    
    
    

    Open Activity

    startActivity(new Intent(FromActivity.this, ToActivity.class));
    overridePendingTransition(R.anim.slide_up, R.anim.stay);
    

    Close Activity

    finish();
    overridePendingTransition(R.anim.stay, R.anim.slide_down);
    

提交回复
热议问题