在AndroidStudio中,如何让图片视图根据屏幕大小调整大小?

问题描述 投票:0回答:1

我希望图像在更改屏幕分辨率时缩小或增大。请帮忙!

当我更改屏幕尺寸时,图像对于某些屏幕来说变得太小或太大。

只需要使用一些xml标签就可以实现这一点。 PS:菜鸟我

android-studio android-imageview
1个回答
0
投票

你可以这样做:-

<ImageView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:src="@drawable/your_image"
    android:adjustViewBounds="true"
    android:scaleType="fitCenter" />

确保:-

android:layout_width="match_parent" 确保图像宽度与容器匹配。 android:layout_height="wrap_content" 让图像根据其宽高比调整其高度。 android:adjustViewBounds="true"android:scaleType="fitCenter" 在保持宽高比的同时进一步微调缩放。

© www.soinside.com 2019 - 2024. All rights reserved.