gpt4 book ai didi

android - 如何设置图像拉伸(stretch)并填满屏幕? (画面一分为二)

转载 作者:行者123 更新时间:2023-11-28 06:54:21 27 4
gpt4 key购买 nike

所以,我有一个分为 2 部分的屏幕。在屏幕的上半部分有一个图像,在屏幕的下半部分有一个文本。无论如何,我都无法让我的图像正确填满屏幕。它总是以图像顶部或侧面的空白区域结尾(如下图所示):Blank sides , Blank top .如果有人可以帮助我解决这个问题,我将不胜感激。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ImageView
android:id="@+id/flag"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
/>

<TextView
android:id="@+id/population"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
/>

</LinearLayout>

最佳答案

<ImageView
android:id="@+id/flag"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:layout_weight="1"/>

应该可以。您可以找到 scaleType here. 的其他可能值

关于android - 如何设置图像拉伸(stretch)并填满屏幕? (画面一分为二),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33597317/

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