gpt4 book ai didi

android - 如何不与 RelativeLayout 重叠

转载 作者:太空宇宙 更新时间:2023-11-03 12:57:47 24 4
gpt4 key购买 nike

我正在尝试获得这样的布局:
enter image description here
好的,我希望滚动从第一个 ImageView 的末尾开始,并且我希望滚动在第二个 ImageView 的开始处结束。我的意思是,我不希望 ImageView 与滚动条重叠。不知道我有没有解释清楚。
首先,我尝试使用 LinearLayout,但我无法在第二个 ImageView 的底部对齐。使用 RelativeLayout,ImageViews 重叠滚动,我可以设置 margin-top 到滚动来解决第一个 ImageView 的问题,但我不知道如何解决第二个 ImageView 的问题。
我还尝试在 LinearLayout 中使用 RelativeLayout,如下所示:

<LinearLayout ....>
<ImageView ...></ImageView>
<ScrollView...></ScrollView>
<RelativeLayout...>
<ImageView....></ImageView>
</RelativeLayout>
</LinearLayout>

The second ImageView doesn't appear. I guess scroll is overlapping it.
I Would appreciate any help. Thanx you.

最佳答案

使用

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<ImageView
android:id="@+id/imageViewTop"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:src="@drawable/ic_launcher" />

<ImageView
android:id="@+id/imageViewBottom"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:src="@drawable/ic_launcher" />

<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/imageViewBottom"
android:layout_below="@+id/imageViewTop"
android:background="#006600" >

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

</RelativeLayout>

关于android - 如何不与 RelativeLayout 重叠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16959447/

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