Back to project page dialogplus.
The source code is released under:
Apache License
If you think the Android project dialogplus 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.orhanobut.dialogplus; // w w w. j av a 2s . c o m import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter; /** * @author Orhan Obut */ public interface Holder { void addHeader(View view); void addFooter(View view); void setAdapter(BaseAdapter adapter); View getView(LayoutInflater inflater, ViewGroup parent); void setOnItemClickListener(OnItemClickListener listener); }