Skip to content

Instantly share code, notes, and snippets.

@mzielu
Created September 26, 2016 14:46
Show Gist options
  • Save mzielu/faaf45b3d182c735321b9b8fb263a73f to your computer and use it in GitHub Desktop.
Save mzielu/faaf45b3d182c735321b9b8fb263a73f to your computer and use it in GitHub Desktop.
AvatarView avatarView;
IImageLoader imageLoader;
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
avatarView = (AvatarView) findViewById(R.id.avatar_view_example);
imageLoader = new PicassoLoader();
imageLoader.loadImage(avatarView, "http:/example.com/user/someUserAvatar.png", "User Name");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment