I am trying to achieve the translucent drawer navigation as shown in Cheesesquare sample from chrisbanes. It uses fitsSystemWindows attribute on a couple of parent views to allow the drawer to draw beyond the bounds. This is how the view hierarchy looks like:
I forked a sample Dagger2+Mortar+Flow repository and tried to add the changes within the repository to allow for translucent status bar as shown in cheesesquare. However, it does not work for some reason, I have tried troubleshooting through the view hierarchy, and I can't figure out what I am missing. Here is how the view hierarchy looks like:
As you can see the drawer layout does not extend fully to the top. Is there a problem because of how SimplePathContainer inflates and attaches the layout?
I am trying to achieve the translucent drawer navigation as shown in Cheesesquare sample from chrisbanes. It uses
fitsSystemWindows
attribute on a couple of parent views to allow the drawer to draw beyond the bounds. This is how the view hierarchy looks like:I forked a sample Dagger2+Mortar+Flow repository and tried to add the changes within the repository to allow for translucent status bar as shown in cheesesquare. However, it does not work for some reason, I have tried troubleshooting through the view hierarchy, and I can't figure out what I am missing. Here is how the view hierarchy looks like:
As you can see the drawer layout does not extend fully to the top. Is there a problem because of how
SimplePathContainer
inflates and attaches the layout?