Back to project page AndroidSimplifiedDrawer.
The source code is released under:
MIT License
If you think the Android project AndroidSimplifiedDrawer 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.kokhouser.simplifieddrawer.library; // w w w .j a v a 2s. c o m import android.view.LayoutInflater; import android.view.View; /** * Created by HZKok on 7/7/2014. */ public interface Item { public int getViewType(); public View getView(LayoutInflater inflater, View convertView); }