android-GridViewWithHeaderAndFooter alternatives and similar packages
Based on the "GridView Widget" category.
Alternatively, view android-GridViewWithHeaderAndFooter alternatives based on common mentions on social networks and blogs.
-
AndroidStaggeredGrid
An Android staggered grid view which supports multiple columns with rows of varying sizes. -
StaggeredGridView
A modified version of Android's experimental StaggeredGridView. Includes own OnItemClickListener and OnItemLongClickListener, selector, and fixed position restore. -
AsymmetricGridView
Android ListView that mimics a GridView with asymmetric items. Supports items with row span and column span -
AndroidCoolDragAndDropGridView
An example of a gridview with various column span items and drag and drop support like Google keep has
SaaSHub - Software Alternatives and Reviews
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of android-GridViewWithHeaderAndFooter or a related project?
Popular Comparisons
README
Github: https://github.com/liaohuqiu
twitter: https://twitter.com/liaohuqiu
中文版文档
GridView with Header and Footer
This library is contained by CUBE-SDK
: https://github.com/etao-open-source/cube-sdk. The Demo is HERE: https://github.com/liaohuqiu/android-cube-app .
Maven
<dependency>
<groupId>in.srain.cube</groupId>
<artifactId>grid-view-with-header-footer</artifactId>
<type>jar</type>
<version>1.0.12</version>
</dependency>
Gradle
compile 'in.srain.cube:grid-view-with-header-footer:1.0.12'
Usage
GridViewWithHeaderAndFooter gridView = (GridViewWithHeaderAndFooter) v.findViewById(R.id.ly_image_list_grid);
LayoutInflater layoutInflater = LayoutInflater.from(this);
View headerView = layoutInflater.inflate(R.layout.test_header_view, null);
View footerView = layoutInflater.inflate(R.layout.test_footer_view, null);
gridView.addHeaderView(headerView);
gridView.addFooterView(footerView);
Thanks
License
Apache 2
contact or help
Please fell free to contact me if there is any problem when using the library.
- [email protected]
- twitter: https://twitter.com/liaohuqiu
- weibo: http://weibo.com/liaohuqiu
- QQ tribe: 271918140
*Note that all licence references and agreements mentioned in the android-GridViewWithHeaderAndFooter README section above
are relevant to that project's source code only.