- Infinite scroll in LinearLayout/ScrollView?
- public View getView(int position, View convertView, ViewGroup parent) {
- if (position == backingLinkedList.size()) {
- //get more items and add them to the backingLinkedList in a background thread
- notifyDataSetChanged();
- }
- }