Back to project page GreenGear.
The source code is released under:
MIT License
If you think the Android project GreenGear 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.bradleycurran.velocadapter; // w w w . j a v a 2 s. c o m import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import com.bradleycurran.viewquery.ViewQuery; public interface ViewBinder { public View newView(LayoutInflater inflator, int position, ViewGroup parent); public void bindView(Context context, View view, ViewQuery query, int position); }