use of app.philm.in.view.PhilmImageView in project philm by chrisbanes.
the class PersonSectionedListAdapter method bindView.
@Override
protected void bindView(int position, View view, ListItem<PhilmPerson> item) {
PhilmPerson person = item.getListItem();
final TextView nameTextView = (TextView) view.findViewById(R.id.textview_title);
nameTextView.setText(person.getName());
final PhilmImageView imageView = (PhilmImageView) view.findViewById(R.id.imageview_poster);
imageView.setAvatarMode(true);
imageView.loadProfile(person);
}
Aggregations