Created
October 28, 2015 22:43
-
-
Save KennethanCeyer/687b9aedc7cd95927efc to your computer and use it in GitHub Desktop.
Implements of BaseAdapter model
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class CheckBoxAdapter extends BaseAdapter { | |
@Override | |
public int getCount() { | |
return 0; | |
} | |
@Override | |
public Object getItem(int position) { | |
return null; | |
} | |
@Override | |
public long getItemId(int position) { | |
return 0; | |
} | |
@Override | |
public View getView(int position, View convertView, ViewGroup parent) { | |
return null; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment