Adding UI for editing the name and the picture of a limited user.

A limited user may not have access to contacts, thus the settings
app has to be able to show UI for selecting a user photo from
gallery or via camera.

bug:8566861

Change-Id: I1974b1a19b0fee8c737d1345302e1b2fba108379
This commit is contained in:
Svetoslav
2013-04-15 12:20:39 -07:00
parent fce4501512
commit bf3391f19b
7 changed files with 430 additions and 26 deletions

View File

@@ -178,4 +178,14 @@ class CircleFramedDrawable extends Drawable {
@Override
public void setColorFilter(ColorFilter cf) {
}
}
@Override
public int getIntrinsicWidth() {
return mSize;
}
@Override
public int getIntrinsicHeight() {
return mSize;
}
}