Advertisement
minafaw3

homeFragment

Nov 13th, 2015
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.22 KB | None | 0 0
  1. package com.tech4life.dogville.View;
  2.  
  3. import android.os.Bundle;
  4. import android.support.annotation.Nullable;
  5. import android.support.v4.app.Fragment;
  6. import android.support.v4.app.FragmentTransaction;
  7. import android.view.LayoutInflater;
  8. import android.view.View;
  9. import android.view.ViewGroup;
  10. import android.widget.AdapterView;
  11. import android.widget.AdapterView.OnItemClickListener;
  12. import android.widget.TextView;
  13.  
  14. import com.tech4life.dogville.Controller.Constants.AppConstants;
  15. import com.tech4life.dogville.Controller.DogsAdapter;
  16. import com.tech4life.dogville.Controller.HorizontalListView;
  17. import com.tech4life.dogville.Controller.ProductAdapter;
  18. import com.tech4life.dogville.Model.DogsModel;
  19. import com.tech4life.dogville.Model.ProductsModel;
  20. import com.tech4life.dogville.R;
  21.  
  22. import java.util.ArrayList;
  23. import java.util.HashMap;
  24. import java.util.Vector;
  25.  
  26. /**
  27. * Created by karma on 18/05/2015.
  28. */
  29.  
  30. public class HomeFragment extends Fragment {
  31.  
  32. private Vector<DogsModel> puppyList = new Vector<>();
  33. private Vector<ProductsModel> accessoryList = new Vector<>();
  34. private Vector<ProductsModel> foodList = new Vector<>();
  35. private Fragment fragment;
  36. private HorizontalListView listview , listview2 , listview3;
  37. private FragmentTransaction fragmentTransaction;
  38. static ArrayList<HashMap<String, String>> list = new ArrayList<HashMap<String, String>>();
  39. private TextView mTitle;
  40.  
  41. public HomeFragment() {
  42.  
  43. }
  44.  
  45. @Override
  46. public View onCreateView(final LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
  47.  
  48. Bundle bundle = this.getArguments();
  49. if(bundle != null){
  50. accessoryList = (Vector<ProductsModel>) bundle.getSerializable(AppConstants.ACCESSORIES);
  51. foodList = (Vector<ProductsModel>) bundle.getSerializable(AppConstants.FOODS);
  52. puppyList = (Vector<DogsModel>) bundle.getSerializable(AppConstants.DOGS);
  53. String title = bundle.getString(AppConstants.NAME);
  54. }
  55.  
  56. View rootView = inflater.inflate(R.layout.fragment_home, null);
  57.  
  58.  
  59. listview = (HorizontalListView) rootView.findViewById(R.id.listview);
  60. listview2 = (HorizontalListView) rootView.findViewById(R.id.listview2);
  61. // listview2.setAdapter(new HAdapter2());
  62. listview3 = (HorizontalListView) rootView.findViewById(R.id.listview3);
  63. // listview3.setAdapter(new HAdapter());
  64. mTitle = (TextView) rootView.findViewById(R.id.mtitle);
  65. mTitle.setText("Home");
  66. populateList();
  67.  
  68. listview.setOnItemClickListener(new OnItemClickListener() {
  69. public void onItemClick(AdapterView<?> parent, View v,
  70. int position, long id) {
  71. Bundle bundle = new Bundle();
  72. DogsModel dog = new DogsModel();
  73. dog = (DogsModel) puppyList.elementAt(position);
  74. bundle.putSerializable(AppConstants.DETAILS2, dog);
  75. bundle.putSerializable(AppConstants.DETAILS, puppyList);
  76. bundle.putString(AppConstants.NAME, "Home");
  77. fragment = new DetailsFragment();
  78. fragment.setArguments(bundle);
  79. //fragmentTransaction = getFragmentManager().beginTransaction().replace(R.id.container, fragment);
  80. fragmentTransaction.addToBackStack("fragment");
  81. fragmentTransaction.commit();
  82.  
  83. }
  84. });
  85. listview2.setOnItemClickListener(new OnItemClickListener() {
  86. public void onItemClick(AdapterView<?> parent, View v,
  87. int position, long id) {
  88. Bundle bundle = new Bundle();
  89. ProductsModel product = new ProductsModel();
  90. product = (ProductsModel) accessoryList.elementAt(position);
  91. bundle.putSerializable(AppConstants.DETAILS2, product);
  92. bundle.putSerializable(AppConstants.DETAILS, accessoryList);
  93. bundle.putString(AppConstants.NAME, "Home");
  94. fragment = new DetailsFragment();
  95. fragment.setArguments(bundle);
  96. //fragmentTransaction = getFragmentManager().beginTransaction().replace(R.id.container, fragment);
  97. fragmentTransaction.addToBackStack("fragment");
  98. fragmentTransaction.commit();
  99.  
  100. }
  101. });
  102. listview3.setOnItemClickListener(new OnItemClickListener() {
  103. public void onItemClick(AdapterView<?> parent, View v,
  104. int position, long id) {
  105. Bundle bundle = new Bundle();
  106. ProductsModel product = new ProductsModel();
  107. product = (ProductsModel) foodList.elementAt(position);
  108. bundle.putSerializable(AppConstants.DETAILS2, product);
  109. bundle.putSerializable(AppConstants.DETAILS, foodList);
  110. bundle.putString(AppConstants.NAME, "Home");
  111. fragment = new DetailsFragment();
  112. fragment.setArguments(bundle);
  113. //fragmentTransaction = getFragmentManager().beginTransaction().replace(R.id.container, fragment);
  114. fragmentTransaction.addToBackStack("fragment");
  115. fragmentTransaction.commit();
  116.  
  117. }
  118. });
  119. return rootView;
  120. }
  121.  
  122. private void populateList() {
  123. list.clear();
  124.  
  125. DogsModel dogs[] = new DogsModel[puppyList.size()];
  126. for (int i = 0; i < puppyList.size(); i++) {
  127. DogsModel puppy = (DogsModel) puppyList.elementAt(i);
  128. DogsModel element = new DogsModel();
  129. element.setImage(puppy.getImage());
  130. element.setDogName(puppy.getDogName());
  131. dogs[i] = element;
  132. }
  133.  
  134.  
  135. DogsAdapter puppyadapter = new DogsAdapter(getActivity(),
  136. R.layout.home_item_blue, dogs);
  137. listview.setAdapter(puppyadapter);
  138.  
  139. list.clear();
  140. ProductsModel accessory[] = new ProductsModel[accessoryList.size()];
  141. for (int i = 0; i < accessoryList.size(); i++) {
  142. ProductsModel product = (ProductsModel) accessoryList.elementAt(i);
  143. ProductsModel element = new ProductsModel();
  144. element.setImage(product.getImage());
  145. element.setProductName(product.getProductName());
  146. accessory[i] = element;
  147. }
  148.  
  149. ProductAdapter accessoryadapter = new ProductAdapter(getActivity(),
  150. R.layout.home_item_white, accessory);
  151. listview2.setAdapter(accessoryadapter);
  152. list.clear();
  153.  
  154.  
  155. ProductsModel foodproducts[] = new ProductsModel[foodList.size()];
  156. for (int i = 0; i < foodList.size(); i++) {
  157. ProductsModel product = (ProductsModel) foodList.elementAt(i);
  158. ProductsModel element = new ProductsModel();
  159. element.setImage(product.getImage());
  160. element.setProductName(product.getProductName());
  161. foodproducts[i] = element;
  162. }
  163.  
  164. ProductAdapter foodadapter = new ProductAdapter(getActivity(),
  165. R.layout.home_item_blue, foodproducts);
  166. listview3.setAdapter(foodadapter);
  167. }
  168. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement