我正在尝试让ImageView具有特定的宽度(比如100dips),但要进行缩放,以便高度是维持比率的任何值,所以如果4:3然后是75 dips,如果是4:5则是120逢低等。
我尝试了一些事情,但没有任何工作。这是我目前的尝试:
<ImageView
android:id="@+id/image"
android:layout_height="wrap_content"
android:layout_width="100dip"
android:adjustViewBounds="true"
android:src="@drawable/stub"
android:scaleType="fitCenter" />
高度的wrap_content没有改善,它只是使整个图像变小(但保持宽高比)。我怎样才能完成我想要做的事情?
答案 0 :(得分:2)
将以下类添加到项目中并像这样更改布局
查看强>
<my.package.name.AspectRatioImageView
android:layout_centerHorizontal="true"
android:src="@drawable/my_image"
android:id="@+id/my_image"
android:layout_height="wrap_content"
android:layout_width="100dp"
android:adjustViewBounds="true" />
<强>类强>
package my.package.name;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.ImageView;
/**
* ImageView which scales an image while maintaining
* the original image aspect ratio
*
*/
public class AspectRatioImageView extends ImageView {
/**
* Constructor
*
* @param Context context
*/
public AspectRatioImageView(Context context) {
super(context);
}
/**
* Constructor
*
* @param Context context
* @param AttributeSet attrs
*/
public AspectRatioImageView(Context context, AttributeSet attrs) {
super(context, attrs);
}
/**
* Constructor
*
* @param Context context
* @param AttributeSet attrs
* @param int defStyle
*/
public AspectRatioImageView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
/**
* Called from the view renderer.
* Scales the image according to its aspect ratio.
*/
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int width = MeasureSpec.getSize(widthMeasureSpec);
int height = width * getDrawable().getIntrinsicHeight() / getDrawable().getIntrinsicWidth();
setMeasuredDimension(width, height);
}
}