Wednesday, April 8, 2015

Android - Infinite GridView

Introduction: The sort definition of infinite GridView is that we will draw bitmap and user can move (Scroll) in any direction in our custom surface view. 

We can view such kind of application on google play store:https://play.google.com/store/apps/details?id=com.HBO&hl=en

Infinite GridView 


Here I am going to share the overall logic of this view. We have achieved it by using canvas ( 2D ) in android. We drawing each bitmap with a label in Android Surface View.The view contains a bunch of bitmaps that circulate when view move in any direction. 


You can get the code from GitHub.
Share:

Get it on Google Play

React Native - Start Development with Typescript

React Native is a popular framework for building mobile apps for both Android and iOS. It allows developers to write JavaScript code that ca...