Skip to content

Instantly share code, notes, and snippets.

@Rainer-Lang
Forked from xingrz/SquareImageView.java
Created July 19, 2017 14:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Rainer-Lang/c6d475a72184897b2ee8ebb79035282e to your computer and use it in GitHub Desktop.
Save Rainer-Lang/c6d475a72184897b2ee8ebb79035282e to your computer and use it in GitHub Desktop.
An ImageView that always square, matching parent's width
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 defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
int width = getMeasuredWidth();
setMeasuredDimension(width, width);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment