-
Notifications
You must be signed in to change notification settings - Fork 166
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
problem on activity transition #31
Comments
You need to make the activity transparent to use this library. After all, set the background is needed to prevent this problem. |
I have the same issue, I have an activity B and C with a DraggerView: A ==> B :it's OK |
Can you create a sample of this problem to me? |
I have the same issue,the issue is when you open C will also callback B notifyOpen,so you can see A,and I solved it by extends: import android.content.Context; import java.lang.reflect.Field; public class DraggerView extends com.github.ppamorim.dragger.DraggerView {
} Use this view in your layout! |
@ppamorim |
Sorry, but it is not more simple to fix it on original DraggerView instead to have a custom view ... |
@ppamorim I have exactly the same problem A: Normal
When the normal transitions are executed I can see a black backgrond there's some config in orde to get a solid background instead the transparent one |
My English is poor,so I try to explain it as clear as possible.
When I try to make activity transition like:
A -> B ( using dragger view as root view ) -> C ( using dragger view as root view ) .
A -> B is good, but B -> C , the background of B suddenly changes to A's , then transit to C. But after the animation , when I slide C , it shows activity B as a underlay correctly.
And I don't know how to fix this.PS,I just pasted some source code instead of importing dependency...
The text was updated successfully, but these errors were encountered: