StevenRudenko / ActionsContentView

ActionsContentView is an standalone library implements actions/content swiping view (AKA Side Navigation UI Pattern, AKA Facebook side menu). The library doesn't use any specific code introduced in new Android SDK versions. This allows develop an application with an action/content swiping view for every version of Android from 2.2 and up.
https://play.google.com/store/apps/details?id=sample.actionscontentview
441 stars 179 forks source link

ActionsContentView with googlemaps #42

Closed conbon closed 10 years ago

conbon commented 10 years ago

I am trying to implement the menu with google maps as my main fragment activity. Although when I have both the actionscontentview and mapfragment in the layout xml the map displays but I am not able to swipe the menu in from the left. When I increase the margin on the left side of the map I can see the menu partially, but only to the edge of the map.

Is this maybe because the map is picking up the swipe?

Any help appreciated.

StevenRudenko commented 10 years ago

Hello Conal,

Do you have map fragment as content view of ActionsContentView? You can enable swipe from edge for menu so ACV will handle menu opening from screen edge but there will be ability to scroll map as well.

Best regards, Steven

Steven Rudenko | Software engineer e. steven.rudenko@gmail.com | p. +380 63 2636053

On Fri, Apr 18, 2014 at 4:24 PM, Conal McLaughlin notifications@github.comwrote:

I am trying to implement the menu with google maps as my main fragment activity. Although when I have both the actionscontentview and mapfragment in the layout xml the map displays but I am not able to swipe the menu in from the left. When I increase the margin on the left side of the map I can see the menu partially, but only to the edge of the map.

Is this maybe because the map is picking up the swipe?

Any help appreciated.

— Reply to this email directly or view it on GitHubhttps://github.com/StevenRudenko/ActionsContentView/issues/42 .

conbon commented 10 years ago

Hi Steven,

I had the map fragment in my activity_main. Put it into the content view and worked. It actually doesn't open as smoothly with the map there but works nonetheless. Great work on the menu.

Thanks, Conal