Advertisement
minafaw3

MyAdapter

Oct 5th, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.53 KB | None | 0 0
  1. public class MyAdapter extends RecyclerView.Adapter<MyAdapter.ViewHolder> {
  2.  
  3. private static final int TYPE_HEADER = 0; // Declaring Variable to Understand which View is being worked on
  4. // IF the viaew under inflation and population is header or Item
  5. private static final int TYPE_ITEM = 1;
  6.  
  7. private String mNavTitles[]; // String Array to store the passed titles Value from MainActivity.java
  8. private int mIcons[]; // Int Array to store the passed icons resource value from MainActivity.java
  9.  
  10. private String name; //String Resource for header View Name
  11. private int profile; //int Resource for header view profile picture
  12. private String email; //String Resource for header view email
  13. Context context;
  14.  
  15.  
  16. // Creating a ViewHolder which extends the RecyclerView View Holder
  17. // ViewHolder are used to to store the inflated views in order to recycle them
  18.  
  19. public static class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener {
  20. int Holderid;
  21.  
  22. TextView textView;
  23. ImageView imageView;
  24. ImageView profile;
  25. TextView Name;
  26. TextView email;
  27. Context contxt;
  28.  
  29.  
  30. public ViewHolder(View itemView,int ViewType,Context c) { // Creating ViewHolder Constructor with View and viewType As a parameter
  31. super(itemView);
  32. contxt = c;
  33. itemView.setClickable(true);
  34. itemView.setOnClickListener(this);
  35. // Here we set the appropriate view in accordance with the the view type as passed when the holder object is created
  36.  
  37. if(ViewType == TYPE_ITEM) {
  38. textView = (TextView) itemView.findViewById(R.id.rowText); // Creating TextView object with the id of textView from item_row.xml
  39. imageView = (ImageView) itemView.findViewById(R.id.rowIcon);// Creating ImageView object with the id of ImageView from item_row.xml
  40. Holderid = 1; // setting holder id as 1 as the object being populated are of type item row
  41. }
  42. else{
  43.  
  44.  
  45. Name = (TextView) itemView.findViewById(R.id.name); // Creating Text View object from header.xml for name
  46. email = (TextView) itemView.findViewById(R.id.email); // Creating Text View object from header.xml for email
  47. profile = (ImageView) itemView.findViewById(R.id.circleView);// Creating Image view object from header.xml for profile pic
  48. Holderid = 0; // Setting holder id = 0 as the object being populated are of type header view
  49. }
  50.  
  51.  
  52.  
  53. }
  54.  
  55.  
  56. @Override
  57. public void onClick(View v) {
  58.  
  59. Toast.makeText(contxt,"The Item Clicked is: "+getPosition(),Toast.LENGTH_SHORT).show();
  60.  
  61. }
  62. }
  63.  
  64.  
  65.  
  66. MyAdapter(String Titles[],int Icons[],String Name,String Email, int Profile,Context passedContext){ // MyAdapter Constructor with titles and icons parameter
  67. // titles, icons, name, email, profile pic are passed from the main activity as we
  68. mNavTitles = Titles; //have seen earlier
  69. mIcons = Icons;
  70. name = Name;
  71. email = Email;
  72. profile = Profile; //here we assign those passed values to the values we declared here
  73. this.context = passedContext;
  74.  
  75. //in adapter
  76.  
  77.  
  78.  
  79. }
  80.  
  81.  
  82.  
  83. //Below first we ovverride the method onCreateViewHolder which is called when the ViewHolder is
  84. //Created, In this method we inflate the item_row.xml layout if the viewType is Type_ITEM or else we inflate header.xml
  85. // if the viewType is TYPE_HEADER
  86. // and pass it to the view holder
  87.  
  88. @Override
  89. public MyAdapter.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
  90.  
  91. if (viewType == TYPE_ITEM) {
  92. View v = LayoutInflater.from(parent.getContext()).inflate(R.layout.item_row,parent,false); //Inflating the layout
  93.  
  94. ViewHolder vhItem = new ViewHolder(v,viewType,context); //Creating ViewHolder and passing the object of type view
  95.  
  96. return vhItem; // Returning the created object
  97.  
  98. //inflate your layout and pass it to view holder
  99.  
  100. } else if (viewType == TYPE_HEADER) {
  101.  
  102. View v = LayoutInflater.from(parent.getContext()).inflate(R.layout.header,parent,false); //Inflating the layout
  103.  
  104. ViewHolder vhHeader = new ViewHolder(v,viewType,context); //Creating ViewHolder and passing the object of type view
  105.  
  106. return vhHeader; //returning the object created
  107.  
  108.  
  109. }
  110. return null;
  111.  
  112. }
  113.  
  114. //Next we override a method which is called when the item in a row is needed to be displayed, here the int position
  115. // Tells us item at which position is being constructed to be displayed and the holder id of the holder object tell us
  116. // which view type is being created 1 for item row
  117. @Override
  118. public void onBindViewHolder(MyAdapter.ViewHolder holder, int position) {
  119. if(holder.Holderid ==1) { // as the list view is going to be called after the header view so we decrement the
  120. // position by 1 and pass it to the holder while setting the text and image
  121. holder.textView.setText(mNavTitles[position - 1]); // Setting the Text with the array of our Titles
  122. holder.imageView.setImageResource(mIcons[position -1]);// Settimg the image with array of our icons
  123. }
  124. else{
  125.  
  126. holder.profile.setImageResource(profile); // Similarly we set the resources for header view
  127. holder.Name.setText(name);
  128. holder.email.setText(email);
  129. }
  130. }
  131.  
  132. // This method returns the number of items present in the list
  133. @Override
  134. public int getItemCount() {
  135. return mNavTitles.length+1; // the number of items in the list will be +1 the titles including the header view.
  136. }
  137.  
  138.  
  139. // Witht the following method we check what type of view is being passed
  140. @Override
  141. public int getItemViewType(int position) {
  142. if (isPositionHeader(position))
  143. return TYPE_HEADER;
  144.  
  145. return TYPE_ITEM;
  146. }
  147.  
  148. private boolean isPositionHeader(int position) {
  149. return position == 0;
  150. }
  151.  
  152. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement