Back to project page AsymmetricGridView.
The source code is released under:
MIT License
If you think the Android project AsymmetricGridView listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.felipecsl.asymmetricgridview.library; // w w w . j a v a2 s . c om import android.os.Parcelable; import android.widget.ListAdapter; public interface AsymmetricGridViewAdapterContract { public void recalculateItemsPerRow(); public Parcelable saveState(); public void restoreState(final Parcelable state); }