Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 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. List<Contact> AllContacts;
  12. @Override
  13. public int getCount() {
  14. // TODO Auto-generated method stub
  15. return 0;
  16. }
  17. @Override
  18. public Object getItem(int arg0) {
  19. // TODO Auto-generated method stub
  20. return null;
  21. }
  22. @Override
  23. public long getItemId(int position) {
  24. // TODO Auto-generated method stub
  25. return 0;
  26. }
  27. @Override
  28. public View getView(int position, View convertView, ViewGroup parent) {
  29. // TODO Auto-generated method stub
  30. return null;
  31. }
  32. MyAdapter (List<Contact> TheContacts)
  33. {
  34. AllContacts = TheContacts;
  35. //TextView Temp = (TextView) findViewById(R.id.TextView01);
  36. }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement