android:ImageView高度宽度与源图像拟合

发布于 2024-11-26 12:17:09 字数 4365 浏览 0 评论 0原文

我有一个页面。它从服务器加载图像并以四对的形式显示在屏幕上。有些图像的尺寸更大或更小。问题是,当图像很大时,图像视图会自行拉伸到图像的实际大小。我希望无论图像大小如何,它都必须适合图像视图,而不会干扰其他 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>

知道吗?

I have a page. It loads the images from server and displays on screen in pairs of four. Some images are larger and smaller in size. The problem is that when the image is large, the imageview stretches itself to the actual size of image. I want that what matter the size of image, it must fit in the imageview without disturbing the other 3 images. Its xml is"

<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>

Any idea?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梓梦 2024-12-03 12:17:09

在图像视图中使用scaleType =“fitXY”

use scaleType="fitXY" in your imageview

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文