Refactored to move out nearby adapter from the activity

This commit is contained in:
maskara 2017-04-02 15:24:29 +05:30
parent a5fe5ff5a6
commit c2ccd95089
4 changed files with 87 additions and 47 deletions

View file

@ -0,0 +1,7 @@
package fr.free.nrw.commons;
import android.content.Context;
public interface ViewHolder<T> {
void bindModel(Context context, T model);
}