gpt4 book ai didi

java - 将元素放在父 RelativeLayout 中的元素上方

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

我想将元素 TextView "singleName"放在父 RelativeLayout 的 ViewPager 之上,是否可以?

这里是 xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v4.widget.NestedScrollView
android:id="@+id/singleScroll"
android:layout_width="match_parent"
android:layout_height="match_parent"
>

<RelativeLayout
android:id="@+id/indicatorWrapper"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<TextView
android:id="@+id/singleName"
android:layout_width="wrap_content"
android:layout_height="@dimen/slider_height" />

</RelativeLayout>

</android.support.v4.widget.NestedScrollView>

<android.support.v4.view.ViewPager
android:id="@+id/singleSlider"
android:layout_width="match_parent"
android:layout_height="@dimen/slider_height"/>

</RelativeLayout>

有什么建议吗?

最佳答案

这个怎么样?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v4.view.ViewPager
android:id="@+id/singleSlider"
android:layout_width="match_parent"
android:layout_height="@dimen/slider_height"
android:alignParentBottom="true"
/>

<android.support.v4.widget.NestedScrollView
android:id="@+id/singleScroll"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/singleSlider"
>

<RelativeLayout
android:id="@+id/indicatorWrapper"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<TextView
android:id="@+id/singleName"
android:layout_width="wrap_content"
android:layout_height="@dimen/slider_height" />

</RelativeLayout>

</android.support.v4.widget.NestedScrollView>

</RelativeLayout>

这应该将 viewpager 放在屏幕的底部,嵌套的滚动布局应该填充屏幕上方的其余部分。

关于java - 将元素放在父 RelativeLayout 中的元素上方,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52279220/

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