Back to project page list-grid-fragment.
The source code is released under:
MIT License
If you think the Android project list-grid-fragment 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.conquermobile.listgridfragment; /*www . j av a 2 s . co m*/ import android.widget.ListAdapter; /** * Created by feng on 13-9-10. */ public interface ListGridAdapter extends ListAdapter { abstract void changeDisplayMode(ListGridFragment.DISPLAY_MODE mode); abstract ListGridFragment.DISPLAY_MODE getDisplayMode(); }