gpt4 book ai didi

java - ImageView 尺寸看起来比实际尺寸小

转载 作者:行者123 更新时间:2023-12-01 13:02:15 25 4
gpt4 key购买 nike

我有一个 LinearLayout,其中包含一张图片和 3 个按钮

图片只占屏幕的一小部分,然后就是3个按钮

问题是我必须向下滚动才能看到 3 个按钮。

这张照片占据了很多地方。

如何让它在一个屏幕上显示所有内容?

这是代码

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">

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

<ImageView
android:scaleType="fitXY"
android:maxHeight="40dp"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:src="@drawable/logooutlast" />

<Button
android:layout_marginTop="20dp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/buttonWalktrough" />

<Button
android:layout_marginTop="20dp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/buttonFullCompletion" />

<Button
android:layout_marginTop="20dp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/buttonInsaneMode" />

</LinearLayout>

这是我的应用程序的当前外观

Current Look of my app

我希望我的按钮出现在图片的正下方。

有办法解决这个问题吗?

最佳答案

将其添加到您的 imageView 以占用空间..

android:adjustViewBounds="true"

关于java - ImageView 尺寸看起来比实际尺寸小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23438567/

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