How can i exclude ActionBar when transitions between Activities on Android 5.0

前端 未结 2 2075
孤街浪徒
孤街浪徒 2020-12-09 21:56

On Android 5.0 Lollipop,

I have two activities A and B. Activity B has a slie enter transition from bottom with a Overlay ActionBar, but when B shows, the ActionBar

2条回答
  •  离开以前
    2020-12-09 22:43

    My solution is to extend the style with this args:

    true
    true
    @transition/slide
    @transition/slide
    true
    true
    @transition/enter
    @transition/enter
    

    This here is my res/transition/slide.xml:

    
    
        
            
            
        
    
    

    This here is my res/transition/enter.xml:

    
    
        
            
            
        
        
        
        
        
    
    

    You can play around with that transitions as you like, important is just those excluded targets.

提交回复
热议问题