Back to project page swazam.
The source code is released under:
MIT License
If you think the Android project swazam 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 at.saws2013.szazam.entities; /* ww w . j a v a 2s. com*/ import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; /** * General Interface for items which can be displayed * in a listview. * * @author Ren? * */ public interface IListItem { public int getViewType(); /** * Return a "prefilled" view which can then be used in * the CustomListAdapter * @param inflater * @param convertView * @param parent * @return */ public View getView(LayoutInflater inflater, View convertView, ViewGroup parent); }