0

I am creating my own side menu (hamburger menu) but I want the menu to be on top of my activity.

I don't want it to move my activity window.
All examples showed me how it moves the activity aside and brings the menu.

I tried doing it using a dialog component but I realized that dialog will always be in the center.

What android component should I be using to make a window come on top of my activity with an overlay?

Thank you.

poupou
  • 43,413
  • 6
  • 77
  • 174
ᴛʜᴇᴘᴀᴛᴇʟ
  • 4,466
  • 5
  • 39
  • 73
  • DrawerLayout is the standard. – Evan Bashir Nov 18 '14 at 00:40
  • I tried that. How can I set my layout to the view? There is no `SetContentView` or `.Show` method. – ᴛʜᴇᴘᴀᴛᴇʟ Nov 18 '14 at 00:42
  • I am using Xamarin platform and I can't seem to find DrawerLayout. So I created my layout and I thought I would just apply animation to it. – ᴛʜᴇᴘᴀᴛᴇʟ Nov 18 '14 at 00:44
  • @EvanB the user aksed for "I want the menu to be on top" not aside. – rnrneverdies Nov 18 '14 at 01:07
  • @Deuterium , the user said "I don't want it to move my activity window.", which leads me to believe they don't want the activity to shift while the drawer slides out. Currently, DrawerLayout sits on TOP of the activity; however, perhaps they want it to slide out from the top - but it's difficult to tell as this question is poorly written. – Evan Bashir Nov 18 '14 at 17:36
  • @EvanB yes, the user made a comment but deleted it, he said he wanted to come out from the right. – rnrneverdies Nov 18 '14 at 18:01
  • possible duplicate of [Android - Is Navigation Drawer from right hand side possible?](http://stackoverflow.com/questions/17156340/android-is-navigation-drawer-from-right-hand-side-possible) – rnrneverdies Nov 18 '14 at 18:02

1 Answers1

1

You want to use DrawerLayout which is part of the Android Support v4 Library.

Here's an example on how to use it from Xamarain.

https://github.com/jamesmontemagno/Xam.NavDrawer

See blog post for more detail:

http://motzcod.es/post/60427389481/effective-navigation-in-xamarin-android-part-1

Kiliman
  • 18,460
  • 3
  • 39
  • 38