FitGridView icon indicating copy to clipboard operation
FitGridView copied to clipboard

Update README.md

Open GabrielLidenor opened this issue 7 years ago • 0 comments

Making use of the new names of the methods of the lib. Also, you cannot call a reference of the Adapter class before the supertype constructor has been called. Like this:

int dataSize = 15;

public MainAdapter(Context context) { //dataSize cannot be called here. Android Studio will give your an error super(context, R.layout.activity_main, dataSize); this.context = context; }

GabrielLidenor avatar Mar 05 '18 11:03 GabrielLidenor