本文實例講述了Android開發(fā)實現(xiàn)ImageView寬度頂邊顯示,高度保持比例的方法。分享給大家供大家參考,具體如下:
ImageView 圖片寬度頂邊顯示,高度保持比例
1、在布局中設(shè)置
<ImageView android:layout_width="match_parent" android:layout_height="wrap_content" android:paddingLeft="5dp" android:paddingRight="2.5dp" android:layout_weight="1" android:scaleType="fitXY" android:adjustViewBounds="true" android:src="@drawable/default_wallpaper_collection_cover"/>
主要是代碼:
android:scaleType="fitXY" :填充寬度match_parent
android:adjustViewBounds="true" :高度保持比例
2、代碼實現(xiàn)
public class MImageView extends ImageView { public MImageView(Context context) { super(context); } public MImageView(Context context, AttributeSet attrs) { super(context, attrs); } public MImageView(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { Drawable drawable = getDrawable(); if (drawable != null) { int width = MeasureSpec.getSize(widthMeasureSpec); int height = (int) Math.ceil((float) width * (float) drawable.getIntrinsicHeight() / (float) drawable.getIntrinsicWidth()); setMeasuredDimension(width, height); } else { super.onMeasure(widthMeasureSpec, heightMeasureSpec); } }}希望本文所述對大家Android程序設(shè)計有所幫助。
新聞熱點
疑難解答
圖片精選