Back to project page Vispin.
The source code is released under:
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. ...
If you think the Android project Vispin 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.jpardogo.vispin.adapters.delegates; //from ww w .j a v a2s . co m import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import com.jpardogo.vispin.models.ListItem; /** * Created by jpardogo on 11/06/2014. */ public interface DelegateAdapter<T> { public View getView(Context context, int position, View convertView, ViewGroup parent, LayoutInflater inflater, ListItem<T> item); }