All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.example.picasso.SquaredImageView Maven / Gradle / Ivy

There is a newer version: 2.5.2
Show newest version
package com.example.picasso;

import android.content.Context;
import android.util.AttributeSet;
import android.widget.ImageView;

/** An image view which always remains square with respect to its width. */
final class SquaredImageView extends ImageView {
  public SquaredImageView(Context context) {
    super(context);
  }

  public SquaredImageView(Context context, AttributeSet attrs) {
    super(context, attrs);
  }

  @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    setMeasuredDimension(getMeasuredWidth(), getMeasuredWidth());
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy