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
import java.util.List; | |
public class OnlineAdapter extends RecyclerView.Adapter<OnlineAdapter.RowsViewHolder> { | |
private List<List<PriceOffer>> currentList = new ArrayList<>(); | |
public static ArrayList<BarEntry> entries = new ArrayList<>(); | |
public static ArrayList<String> list = new ArrayList<>(); | |
public static ArrayList<String> data = new ArrayList<>(); | |
Context context; |
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 OnlineAdapter extends RecyclerView.Adapter<OnlineAdapter.RowsViewHolder> { | |
private List<List<PriceOffer>> currentList = new ArrayList<>(); | |
Context context; | |
String data; | |
int count = 0; | |
public static class RowsViewHolder extends RecyclerView.ViewHolder{ | |
LinearLayout linearLayout; |