android-如何保持API <18上的图像长宽比

android-如何保持API <18上的图像长宽比,第1张

概述我有下一个xml布局:<?xmlversion="1.0"encoding="utf-8"?><LinearLayoutxmlns:android="http://schemas.android.com/apkes/android"xmlns:tools="http://schemas.android.comools"android:layout_width="match_p

我有下一个xml布局:

<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"xmlns:tools="http://schemas.androID.com/tools"androID:layout_wIDth="match_parent"androID:layout_height="match_parent"androID:background="#fff"androID:gravity="center_vertical"androID:orIEntation="vertical" ><relativeLayout    androID:ID="@+ID/my_frame"    androID:layout_wIDth="wrap_content"    androID:layout_height="wrap_content"    androID:background="#fff"    androID:gravity="center_vertical" >    <ImageVIEw        androID:ID="@+ID/image_areas"        androID:layout_wIDth="match_parent"        androID:layout_height="wrap_content"        androID:layout_alignParentleft="true"        androID:layout_alignParentRight="true"        androID:adjustVIEwBounds="true"        androID:background="#9a05e7"        androID:scaleType="fitXY"        androID:src="@drawable/mapa_mask"        androID:visibility="invisible"        tools:ignore="ContentDescription" />    <ImageVIEw        androID:ID="@+ID/image"        androID:layout_wIDth="match_parent"        androID:layout_height="wrap_content"        androID:layout_alignParentleft="true"        androID:layout_alignParentRight="true"        androID:adjustVIEwBounds="true"        androID:background="#fff"        androID:scaleType="fitXY"        androID:src="@drawable/mapa_default"        androID:visibility="visible"        tools:ignore="ContentDescription" /></relativeLayout>@H_419_6@

有两个图像“覆盖”.

如果我在已安装AndroID 4.3或更高版本(> = API 18)的设备上测试该应用程序,则图像纵横比将保持完美.但是,如果我在API> = 14 API< = 17之间的设备上测试该应用程序,则图像显示为“高度狭窄”.我用下一个设置了正确的大小,但是没有用:

        // load the original BitMap (768 x 583 px)    Bitmap bitmapOrg = BitmapFactory.decodeResource(getResources(),            R.drawable.mapa_default);            // iv is an ImageVIEw referenced in onCreate (mapa_default)    int wIDth = bitmapOrg.getWIDth();    int height = bitmapOrg.getHeight();    int newWIDth = iv.getWIDth();    int newHeight = heightRealimg;    // calculate the scale    float scaleWIDth = ((float) newWIDth) / wIDth;    float scaleHeight = ((float) newHeight) / height;    // create a matrix for the manipulation    Matrix matrix = new Matrix();    // resize the bit map    matrix.postscale(scaleWIDth, scaleHeight);    // recreate the new Bitmap    Bitmap resizedBitmap = Bitmap.createBitmap(bitmapOrg, 0, 0, wIDth,            height, matrix, true);    // make a Drawable from Bitmap to allow to set the BitMap    // to the ImageVIEw, Imagebutton or what ever    BitmapDrawable bmd = new BitmapDrawable(resizedBitmap);    // set the Drawable on the ImageVIEw    iv.setimageDrawable(bmd);    // center the Image    iv.setScaleType(ScaleType.FIT_XY);    iv.setAdjustVIEwBounds(true);@H_419_6@

之所以崩溃,是因为iv.getWIDth返回0.我认为这是因为布局尚未完成加载.

如何保持图像宽高比?
谢谢

我的解决方案:

<?xml version="1.0" enCoding="utf-8"?><relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"xmlns:tools="http://schemas.androID.com/tools"androID:ID="@+ID/my_frame"androID:layout_wIDth="wrap_content"androID:layout_height="wrap_content"androID:background="#fff"androID:gravity="center_vertical" ><ImageVIEw    androID:ID="@+ID/image_areas"    androID:layout_wIDth="match_parent"    androID:layout_height="match_parent"    androID:adjustVIEwBounds="true"    androID:background="#9a05e7"    androID:scaleType="fitXY"    androID:src="@drawable/mapacyl_mask"    androID:visibility="invisible"    tools:ignore="ContentDescription" /><ImageVIEw    androID:ID="@+ID/image"    androID:layout_wIDth="match_parent"    androID:layout_height="match_parent"    androID:background="#fff"    androID:scaleType="fitXY"    androID:src="@drawable/mapacyl"    androID:visibility="visible"    tools:ignore="ContentDescription" /></relativeLayout>@H_419_6@

在这种情况下,我可以管理“所有”屏幕的触摸,并且不需要获取图像的宽度和高度或修改这些值.而且使用fitXY图像可以扩展并适应所有屏幕尺寸,但比例无法保持.

非常感谢@Doctoror Drive

解决方法:

为什么不使用

androID:scaleType="centerCrop"?@H_419_6@

编辑:
您无需在代码中做任何其他事情.

您误解了wrap_content和scale类型的含义.

wrap_content表示VIEw将与图像一样小,并且不大于其父边界.

fitXY表示将在不保留宽高比的情况下调整图像大小以适合整个ImageVIEw.
canterCrop手段

Scale the image uniformly (maintain the image’s aspect ratio) so that both dimensions (wIDth and height) of the image will be equal to or larger than the corresponding dimension of the vIEw (minus padding).

所以也许你想尝试

androID:scaleType="centerInsIDe"@H_419_6@

Scale the image uniformly (maintain the image’s aspect ratio) so that both dimensions (wIDth and height) of the image will be equal to or less than the corresponding dimension of the vIEw (minus padding).

ImageView scaleType

总结

以上是内存溢出为你收集整理的android-如何保持API <18上的图像长宽比全部内容,希望文章能够帮你解决android-如何保持API <18上的图像长宽比所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1077013.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)