gpt4 book ai didi

安卓 : Align an ImageView to its parent's bottom

转载 作者:太空狗 更新时间:2023-10-29 15:31:44 25 4
gpt4 key购买 nike

我有一个非常简单的 RelativeLayout :

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

<ListView
android:id="@+id/listApplications"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />

<!-- AD SERVER -->

<ImageView
android:id="@+id/ad_server_picture"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginBottom="0dp"
android:contentDescription="@string/ad_banner_image_description"
android:gravity="bottom|center_horizontal"
android:paddingBottom="0dp" />

</RelativeLayout>

ImageView 与其父级 (RelativeLayout) 的底部对齐,我将 padding/margin 设置为 0,但我在图像的顶部和底部得到了一个白色的“边框”(见红色标记):

enter image description here

谢谢!

最佳答案

使用 android:scaleType="fitXY" 使图像适合屏幕。将您的 ImageView 更改为此。

 <ImageView
android:id="@+id/ad_server_picture"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:scaleType="fitXY"
android:contentDescription="@string/ad_banner_image_description"
android:gravity="bottom|center_horizontal"
/>

嗨。

关于安卓 : Align an ImageView to its parent's bottom,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22808869/

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