Giter Club home page Giter Club logo

antipodalwall's Introduction

AntipodalWall (beta!)

AntipodalWall is an standalone library designed to provide a so called "masonry" grid layout for Android (much like Pinterest app). This layout acommodates it's children views in a configurable number of columns letting them grow vertically as much as they need.

Check the page here

Why the name

Well... the layout looks much like a masonry wall, but inverted. Like if it was in the antipodes.

Beta!

The layout is still in an early stage of development. Specifically it needs work in memory handling for scrolling (view recycling), so right now it is not smooth with a lot of children and/or images.

There is ongoing work to add adapter support and view recycling in the change-to-adapter-view branch

How to use

Assuming you’re using the Eclipse Development Environment with the ADT plugin version 0.9.7 or greater you can include AntipodalWall as a library project. Create a new Android project in Eclipse using the library/ folder as the existing source. Then, in your project properties, add the created project under the ‘Libraries’ section of the ‘Android’ category.

Then, in your XML layout file, you can add the layout like this:

<com.antipodalwall.AntipodalWallLayout xmlns:android="http://schemas.android.com/apk/res/android"
	xmlns:app="http://schemas.android.com/apk/res-auto"
	android:id="@+id/antipodal_wall"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:scrollbars="vertical"
    android:columnCount="4"
    android:padding="2dp"
    android:verticalSpacing="2dp"
    android:horizontalSpacing="2dp">
    <!-- Your child views go here -->
</com.antipodalwall.AntipodalWallLayout>

You can also add view programatically from your activity like this:

AntipodalWallLayout layout = (AntipodalWallLayout)findViewById(R.id.antipodal_wall);
TextView tv = new TextView(this);
tv.setText("This TextView has been added from code");
layout.addView(tv);

There is a sample app project that already implements the layout in the sample_app/ folder.

Developed By

License

Copyright 2012 Daniel López Lacalle

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

antipodalwall's People

Contributors

expilu avatar

Watchers

kebo avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.