Advertisement
minafaw3

Disases_listView

Oct 19th, 2015
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.26 KB | None | 0 0
  1. package Le3ynik.ui;
  2.  
  3. import java.util.ArrayList;
  4.  
  5. import leaynik.co.com.R;
  6. import Le3ynik.defs.DisasesItem;
  7. import android.content.Context;
  8. import android.graphics.Typeface;
  9. import android.view.LayoutInflater;
  10. import android.view.View;
  11. import android.view.ViewGroup;
  12. import android.widget.BaseAdapter;
  13. import android.widget.ImageView;
  14. import android.widget.ProgressBar;
  15. import android.widget.TextView;
  16.  
  17. import com.example.imageloader.ImageLoader;
  18.  
  19. public class Disases_listView extends BaseAdapter {
  20.  
  21. Context context;
  22. // layoutdata [] layouts;
  23. ImageLoader loader;
  24. private ArrayList<DisasesItem> Disases = new ArrayList<DisasesItem>();
  25.  
  26. public Disases_listView(Context context, ArrayList<DisasesItem> Questions) {
  27. this.context = context;
  28. loader = new ImageLoader(context);
  29. this.Disases = Questions;
  30. }
  31.  
  32. @Override
  33. public int getCount() {
  34. // TODO Auto-generated method stub
  35. try {
  36. return Disases.size();
  37. } catch (Exception e) {
  38. // TODO Auto-generated catch block
  39. e.printStackTrace();
  40. }
  41. return 0;
  42. }
  43.  
  44. @Override
  45. public Object getItem(int arg0) {
  46. // TODO Auto-generated method stub
  47. return Disases.get(arg0);
  48. }
  49.  
  50. @Override
  51. public long getItemId(int arg0) {
  52. // TODO Auto-generated method stub
  53. return 0;
  54. }
  55.  
  56. @Override
  57. public View getView(final int pos, View view, ViewGroup arg2) {
  58. // Handler handel = null;
  59. LayoutInflater inflater = (LayoutInflater) context
  60. .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
  61. Typeface tf = Typeface.createFromAsset(context.getAssets(), "fonts/GE_SS_Two_Bold.otf");
  62.  
  63. view = inflater.inflate(R.layout.disases_row, null);
  64. ImageView disases_img = (ImageView) view.findViewById(R.id.disases_img);
  65. TextView name = (TextView) view.findViewById(R.id.disases_name);
  66. name.setTypeface(tf);
  67. ProgressBar post_img_pro = (ProgressBar) view
  68. .findViewById(R.id.disases_progressBar1);
  69. loader.DisplayImage(Disases.get(pos).disease_photo, disases_img,
  70. post_img_pro, 1);
  71. name.setText(Disases.get(pos).disease_name);
  72. // Animation animation = null;
  73. // animation = AnimationUtils.loadAnimation(context,
  74. // R.anim.slid_up_to_btom);
  75. // animation.setDuration(500);
  76.  
  77. // view.setAnimation(animation);
  78. // animation = null;
  79. return view;
  80. }
  81. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement