约束布局-将Viewpager放置在另一个视图上方

时间:2019-08-25 23:34:41

标签: android android-viewpager android-constraintlayout

我试图在约束布局中的另一个视图上方放置Viewpager,但是除非我使用诸如“ 150dp”之类的设置高度,否则Viewpager一直延伸到父对象的底部。我将如何使它仅扩展到到达“创建新帐户”布局的顶部?

enter image description here

我尝试过的事情:

-将viewpager的高度设置为dp(150dp)的设定值,它可以工作,但我更希望使其与多个设备高度匹配

-在“创建帐户布局”顶部向Viewpager的约束底部添加约束不起作用

这是我的布局代码:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:fillViewport="true">

<android.support.constraint.ConstraintLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:focusable="true"
    android:focusableInTouchMode="true">

    <TextView
        android:id="@+id/appname"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:text="MyApp"
        android:textColor="@color/colorBlackFont"
        android:textSize="25sp"
        android:textStyle="bold"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.5"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.2"/>


    <TextView
        android:id="@+id/textview_betterexperience"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="8dp"
        android:layout_marginTop="8dp"
        android:layout_marginEnd="8dp"
        android:text=""
        android:textStyle="bold"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/appname"/>



    <android.support.v4.view.ViewPager
        android:id="@+id/viewpager"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:drawablePadding="8dp"
        android:layout_marginStart="8dp"
        android:layout_marginTop="48dp"
        android:layout_marginEnd="8dp"
        android:hint="Username"
        android:textSize="14dp"
        android:textCursorDrawable="@drawable/cursor_color"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.5"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@id/textview_betterexperience"
        app:layout_constraintWidth_percent=".75"/>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintVertical_bias="1">

        <View
            android:id="@+id/divider_bottom"
            android:layout_width="match_parent"
            android:layout_height="1dp"
            android:background="@color/dividerColor"
            android:layout_alignParentTop="true"/>

        <TextView
            android:id="@+id/textview_newaccount"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginStart="8dp"
            android:layout_marginEnd="8dp"
            android:text="Create a new account"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"
            android:textStyle="bold" />

    </RelativeLayout>


</android.support.constraint.ConstraintLayout>

</ScrollView>

我希望它看起来像的最终结果是这样的:

enter image description here

3 个答案:

答案 0 :(得分:3)

app:layout_constraintBottom_toTopOf="@id/unnamed_relativeLayout" 
app:layout_constrainedHeight="true" (or set layout_height to 0dp)

预览可能会显得有些奇怪,但一旦应用中的内容夸大就会显示

答案 1 :(得分:3)

为您的相对布局添加ID

<RelativeLayout
            android:id="@+id/relativeLayout"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintVertical_bias="1">

然后在您的Viewpager中添加

   app:layout_constraintBottom_toTopOf="@id/relativeLayout"

并设置android:layout_height="0dp"使其与约束匹配。

答案 2 :(得分:0)

您缺少View pager的底部约束。在下面使用 应用:

layout_constraintBottom_toTopOf =“ @ id / relativeLayoutId”