Skip to content

Instantly share code, notes, and snippets.

@blork
Created May 21, 2013 13:19
Show Gist options
  • Save blork/5619697 to your computer and use it in GitHub Desktop.
Save blork/5619697 to your computer and use it in GitHub Desktop.
Android imageview subclass which maintains a square aspect ratio.
import android.content.Context;
import android.util.AttributeSet;
import android.widget.ImageView;
public class SquareImageView extends ImageView {
public SquareImageView(Context context) {
super(context);
}
public SquareImageView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public SquareImageView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
@Override
protected void onMeasure (int widthMeasureSpec, int heightMeasureSpec) {
int width = getDefaultSize(getSuggestedMinimumWidth(), widthMeasureSpec);
setMeasuredDimension(width,width);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment