Android Question 2D scrolling advice needed

james_sgp

Active Member
Licensed User
Longtime User
Hi everyone,
Im building an app that has an interactive map of an event (i`m using XUI Scrollview2D), everything is great.
BUT I need to able to remove ONE of the created views (a panel), which I can`t do in SCV2D. Is there any suggestions in other ways I could create this 2D map?
FYI, the items in the map need to be clickable and there will eventually be multiple maps.

Thanks in advance...

James

Capture.PNG
 

Star-Dust

Expert
Licensed User
Longtime User
Like all Panels and ScrollViews, in order to undock a view you have to do it from the view with RemoveViewFromParent. There is nothing different.

To get all views use XUI_ScrollView.GetAllViewsRecursive
 
Upvote 1
Top