Make identicons round

This commit renames identicons to avatars in field names, and uses an ImageView
derivative to show the identicons, which should make implementing #214 easier.
This commit is contained in:
str4d
2016-01-26 20:21:35 +00:00
parent 9749eefb90
commit 90eded1421
14 changed files with 78 additions and 34 deletions

View File

@@ -48,6 +48,16 @@ public class IdenticonDrawable extends Drawable {
mDelegate.show(toShow);
}
@Override
public int getIntrinsicHeight() {
return 200;
}
@Override
public int getIntrinsicWidth() {
return 200;
}
@Override
public void setBounds(Rect bounds) {
super.setBounds(bounds);