View of Endless Width and Height with Camera Operations .

How can We Create a Custom View Like a MapFragment Where the Users can Scroll , Pinch ,Zoom in Zoom Out and do all the Camera Specific Operations. I would want the View to be of Endless width and Endless height, invisible at the beginning but rendered as the user Requests by Navigating . Is It Possible , if So , How ??

Upvotes: 1

Views: 30

Answers (1)

shem
shem

Reputation: 4712

You tackling it the wrong way, the view itself is not endless- it's just the size of the screen, the data itself is "endless". What you want to do is to create a view that response to gestures from the user and redraw itself depend on the position and the zoom level. Here is an example

Upvotes: 1

Related Questions