Skip to content

Commit

Permalink
add method to allow easy customization of items in the feed list
Browse files Browse the repository at this point in the history
  • Loading branch information
bekkii77 committed Jul 25, 2012
1 parent 28993de commit bbfc74c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions TinyRssLib/src/com/tinymission/rss/FeedActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,10 @@ public void cancelProgressDialog() {
}
}


public void customizeItemView(Item item, View v) {

}

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Expand Down Expand Up @@ -283,7 +286,7 @@ public View getView(int position, View convertView, ViewGroup parent) {
imageView.setVisibility(View.GONE);
}
}

customizeItemView(item, view);
return view;
}

Expand Down

0 comments on commit bbfc74c

Please sign in to comment.