gpt4 book ai didi

android:ImageView高宽与源图适配

转载 作者:搜寻专家 更新时间:2023-11-01 08:13:52 26 4
gpt4 key购买 nike

我有一个页面。它从服务器加载图像并以四对显示在屏幕上。一些图像尺寸变大或变小。问题是当图像很大时,imageview 会自动拉伸(stretch)到图像的实际大小。我希望无论图像大小如何,它都必须适合 imageview 而不会干扰其他 3 个图像。它的xml是“

<LinearLayout android:id="@+id/videolist"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/trendingnowmanual"
android:layout_above="@+id/navigatevideo"
android:gravity="center_vertical|center_horizontal"
android:background="#ffffff"
android:layout_marginLeft="20dip"
android:layout_marginRight="20dip"
android:layout_marginTop="5dip"
android:layout_marginBottom="5dip" >

<LinearLayout android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical|center_horizontal"
android:layout_marginLeft="10dip"
android:layout_marginRight="10dip"
android:layout_marginTop="10dip"
android:layout_marginBottom="5dip"
android:layout_weight="100">
<ImageView android:id="@+id/one"
android:src="@drawable/add1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingRight="5dip"
android:layout_weight="50"
android:adjustViewBounds="true"
>
</ImageView>
<ImageView android:id="@+id/two"
android:src="@drawable/add2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="5dip"
android:layout_weight="50"
android:adjustViewBounds="true"
>
</ImageView>

</LinearLayout>
<LinearLayout android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical|center_horizontal"
android:layout_marginLeft="10dip"
android:layout_marginRight="10dip"
android:layout_marginTop="5dip"
android:layout_marginBottom="10dip"
android:layout_weight="100" >
<ImageView android:id="@+id/three"
android:src="@drawable/add3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingRight="5dip"
android:layout_weight="50"
android:adjustViewBounds="true"
>
</ImageView>
<ImageView android:id="@+id/four"
android:src="@drawable/add4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="5dip"
android:layout_weight="50"
android:adjustViewBounds="true"
>
</ImageView>
</LinearLayout>
</LinearLayout>

有什么想法吗?

最佳答案

在您的 ImageView 中使用 scaleType="fitXY"

关于android:ImageView高宽与源图适配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6855289/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com