gpt4 book ai didi

android - 线性布局中的 ImageView

转载 作者:行者123 更新时间:2023-11-30 03:56:55 25 4
gpt4 key购买 nike

我正在尝试将 4 个 imageView 添加到垂直对齐的 LinearLayout。我希望四张图片完美堆叠,没有间距。问题是图像上方和下方有空白区域。也许这与图像缩放的方式有关?

这是我的来源:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<com.google.ads.AdView
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:id="@+id/add1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adSize="BANNER"
ads:adUnitId=""
ads:loadAdOnCreate="true"
ads:testDevices="" />

<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/add1" >

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/menu_graphic_1"/>

<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/menu_graphic_2" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/menu_graphic_3" />

<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/menu_graphic_4" />

</LinearLayout>

</ScrollView>

</RelativeLayout>

最佳答案

Asok 是对的。将 android:adjustViewBounds="true"添加到我的 ImageView 中解决了问题:)

关于android - 线性布局中的 ImageView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13204841/

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