Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. package com.TRYING_AGAIN.me;
  2.  
  3. import java.util.List;
  4.  
  5. import android.view.View;
  6. import android.view.ViewGroup;
  7. import android.widget.BaseAdapter;
  8. import android.widget.TextView;
  9.  
  10. public class MyAdapter extends BaseAdapter {
  11. private List<Contact> mAllContacts;
  12.  
  13. @Override
  14. public int getCount() {
  15. // TODO Auto-generated method stub
  16. return 0;
  17. }
  18.  
  19. @Override
  20. public Object getItem(int arg0) {
  21. // TODO Auto-generated method stub
  22. return null;
  23. }
  24.  
  25. @Override
  26. public long getItemId(int position) {
  27. // TODO Auto-generated method stub
  28. return 0;
  29. }
  30.  
  31. @Override
  32. public View getView(int position, View convertView, ViewGroup parent) {
  33. // TODO Auto-generated method stub
  34. return null;
  35. }
  36.  
  37. MyAdapter(List<Contact> TheContacts) {
  38. mAllContacts = TheContacts;
  39. TextView Temp = (TextView) findViewById(R.layout.mylistviewlayout.TextView01);
  40.  
  41. }
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement