gpt4 book ai didi

android XML scrollview 和线性布局问题

转载 作者:行者123 更新时间:2023-11-29 02:11:31 26 4
gpt4 key购买 nike


我有以下代码:

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

<ImageView android:src="@drawable/ducks_r2_c1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<ImageView android:src="@drawable/ducks_r3_c1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" android:clickable="true"/>
<ImageView android:src="@drawable/ducks_r4_c1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" android:clickable="true"/>
<ImageView android:src="@drawable/ducks_r5_c1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" android:clickable="true"/>
<ImageView android:src="@drawable/ducks_r6_c1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" android:clickable="true"/>

</LinearLayout>

</ScrollView>

我到处都使用了 layout_width="fill_parent"。但这是它如何在模拟器上显示的屏幕截图。
enter image description here
我不想要图像两边的空间。
为什么会出现这个样子?我该如何纠正?
谢谢

最佳答案

我猜这是因为图像没有拉伸(stretch)。

您可以尝试让图像自行拉伸(stretch):

android:scaleType="fitXY"

或将其用作背景。

请检查此线程: android: stretch image in imageview to fit screen

关于android XML scrollview 和线性布局问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7031751/

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