This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.daeheehan.util; | |
import android.view.View; | |
import android.view.View.MeasureSpec; | |
import android.view.ViewGroup; | |
import android.widget.ListAdapter; | |
import android.widget.ListView; | |
/** | |
* List View Utility |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class CustomAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder>{ | |
//our items | |
List<Generic> items = new Arraylist<>(); | |
//headers | |
List<View> headers = new ArrayList<>(); | |
//footers | |
List<View> footers = new ArrayList<>(); | |
public static final int TYPE_HEADER = 111; | |
public static final int TYPE_FOOTER = 222; |