How can I make my page slide as the user slides finger on the screen? Any example code?
I just require the same feel as it is on my android g-phone\'s home scre
The Home screen is made of two layers:
The background (or Workspace) that shows the image; this layer scrolls and draws the wallpaper with a different scroll value. Workspace behaves more or less like a simplified horizontal layout
The screens (or CellLayouts) that display the icons; this layer is made of 3 CellLayout side by side. CellLayout is a custom grid-like layout.
The fling is implemented using a VelocityTracker, a Scroller and regular View.scroll methods.