Android Prevent Part Of The Map On Screen From Dragging
I have map fragment inside of the frame layout, and i want to disable it from dragging when i will be using another containter(e.g relative layout) on top of it, which will contain
Solution 1:
Just make your RelativeLayout
clickable adding this:
android:clickable="true"
Post a Comment for "Android Prevent Part Of The Map On Screen From Dragging"