Back to project page our_days.
The source code is released under:
Apache License
If you think the Android project our_days listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.meg7.widget; /* www .j av a2s. c o m*/ import android.content.Context; import android.util.AttributeSet; import android.widget.ImageView; public class CustomShapeSquareImageView extends CustomShapeImageView { public CustomShapeSquareImageView(Context context, int resourceId, int shape, int svgRawResourceId) { super(context, resourceId, shape, svgRawResourceId); } public CustomShapeSquareImageView(Context context) { super(context); } public CustomShapeSquareImageView(Context context, AttributeSet attrs) { super(context, attrs); } public CustomShapeSquareImageView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { super.onMeasure(widthMeasureSpec, heightMeasureSpec); setMeasuredDimension(getMeasuredWidth(), getMeasuredWidth()); } }