Android Question How to use two animated sliding panels at the same time

DATASOFT (SOLUSOFT S A)

Member
Licensed User
Longtime User
I am playing with two class sliding panels and animate sliding panels when i use the animate i can't handle two menus on the screen may be possible?.
as learning method i use the two class at same time first sliding menu later animate menu but i have a problem when i use the sliding menu and do a click all be fine, i display the animation menu where i want but the problem is i dont wanna hide the menu but he still disable the event_click of animation menu the code is better that me bad english XD
 

Attachments

  • fusmasm.zip
    49.2 KB · Views: 267

NJDude

Expert
Licensed User
Longtime User
The problem is that the SlidingMenu uses a transparent panel covering the whole screen which blocks the AnimatedSlidingMenu. The AnimatedSlidingMenu class wasn't designed to work like that, however, I've added the method BringToFront, and solves the problem (look at line #91 in the Main module), you will have to make a few adjustments to your code to reposition the AnimatedSlidingMenu.

You could also modify the other class, your choice.
 

Attachments

  • CodeFixed.zip
    49.2 KB · Views: 317
Last edited:
Upvote 0
Top