Posts

Showing posts from January, 2013

StaggeredGridView Example

Image
Introduction The StaggeredGridView allows the user to create a GridView with uneven rows similar to how Pinterest looks. Includes own OnItemClickListener and OnItemLongClickListener, selector, and fixed position restore. Setup To use StaggeredGridView in your projects, simply add this project to your workspace then add it as a library project to your current project. Usage Attributes supported (same behavior as GridView):  numColumns : determines the amount of columns to be drawn drawSelectorOnTop : determine if selector should be drawn on top <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:staggered="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/mainLayout"> <com.origamilabs.library.views.StaggeredGridView> android:id=...

Use Of Parse.com

Introduction    The Parse platform provides a complete back end solution for your mobile application. Apps  Storing data on Parse is built around the   ParseObject . Each   ParseObject   contains key-value pairs of JSON-compatible data. This data is schemaless, which means that you don't need to specify ahead of time what keys exist on each   ParseObject . You simply set whatever key-value pairs you want, and our backend will store it. Parse.com Link : https://parse.com/docs/android_guide