Library Project including compatibility GridLayout. This can be used by an Android project to provide access to GridLayout on applications running on API 7+. There is technically no source, but the src folder is necessary to ensure that the build system works. The content is actually located in libs/android-support-v7-gridlayout.jar. The accompanying resources must also be included in the application. USAGE: Make sure you use in your layouts instead of . Same for instead of . Additionally, all of GridLayout's attributes should be put in the namespace of the app, as those attributes have been redefined in the library so that it can run on older platforms that don't offer those attributes in their namespace. To know which attributes need the application namespace, look at the two declare-styleable declared in res/values/attrs.xml For instance: <===== notice how we're using app:columnCount here, not android:columnCount!