gpt4 book ai didi

android - 图像不在 imageView android 中拉伸(stretch)

转载 作者:行者123 更新时间:2023-11-29 14:22:40 25 4
gpt4 key购买 nike

当我将它设置为 source 时,我有一个带有根相对布局和 ImageView 的布局,图像不适合内部 ImageView ,留下预览中但未在 xml 中定义的顶部和底部填充。我想知道如何拉伸(stretch)图像以完全适合 ImageView。

XML:

<?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"
android:background="#fff">
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/place_demo_2"
android:id="@+id/back_ground_place"
android:layout_alignParentBottom="true"
android:layout_marginBottom="400dp" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Manila Main"
android:id="@+id/visit_place_title"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="68dp"
android:textColor="#fff"/>
</RelativeLayout>

Preview

最佳答案

使用代码:

YourImageView.SetScaleType(ImageView.ScaleType.FIT_XY);

使用 xml:

android:scaleType="fitXY"

另请参阅下面的快照以了解其他替代选项。 enter image description here

关于android - 图像不在 imageView android 中拉伸(stretch),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37680784/

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