约束布局在预览和练习时显示另一个屏幕

时间:2017-09-01 13:00:48

标签: android android-constraintlayout

我使用以下代码显示按钮和ViewPager。我想在按钮上方显示ViewPager,但它具有wrap_content高度和宽度。

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/linearLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/transparent_hd_image_scrim">

<android.support.v4.view.ViewPager
    android:id="@+id/view_pager"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"/>

<LinearLayout
    android:id="@+id/buttons_bottom_layout"
    android:layout_width="0dp"
    android:layout_height="@dimen/hd_preview_buttons_height"
    android:layout_marginEnd="@dimen/basic_keyline"
    android:layout_marginRight="@dimen/basic_keyline"
    android:orientation="horizontal"
    android:layout_marginBottom="16dp"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintTop_toBottomOf="@id/view_pager"
    app:layout_constraintBottom_toBottomOf="parent">

    <Button
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:visibility="invisible" />

    <View
        android:id="@+id/stubBottom"
        android:layout_width="@dimen/basic_keyline"
        android:layout_height="wrap_content" />

    <Button
        android:id="@+id/send_button"
        style="@style/HDPreviewButtonStyle"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:background="@color/colorAccent"
        android:text="@string/send"
        android:textAllCaps="true" />

</LinearLayout>

我在预览中看到的内容。

What I see on preview

但是在模拟器上练习我得到这个屏幕。 on practice

我做错了什么?

1 个答案:

答案 0 :(得分:0)

在您发布的XML代码中,ConstraintLayout可能存在一些问题。

ConstraintLayout还可以帮助您进行嵌套布局,在您要避免的注释中也提到了这一点。

我不确定您是否希望视图寻呼机表现为环绕而不是匹配其约束。

我使用ConstraintLayout所提供的内容缓解了以前的布局,创建了我认为想要的东西。

<android.support.constraint.ConstraintLayout android:id="@+id/linearLayout"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/transparent_hd_image_scrim">

    <android.support.v4.view.ViewPager
        android:id="@+id/view_pager"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_marginBottom="8dp"
        app:layout_constraintBottom_toTopOf="@+id/barrier"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <Button
        android:id="@+id/button"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginBottom="8dp"
        android:layout_marginEnd="16dp"
        android:layout_marginStart="16dp"
        android:visibility="invisible"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toStartOf="@+id/send_button"
        app:layout_constraintHorizontal_bias="0.5"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/view_pager" />

    <Button
        android:id="@+id/send_button"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginBottom="8dp"
        android:layout_marginEnd="16dp"
        android:layout_marginStart="8dp"
        android:background="@color/colorAccent"
        android:textAllCaps="true"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.5"
        app:layout_constraintStart_toEndOf="@+id/button"
        app:layout_constraintTop_toBottomOf="@+id/view_pager"
        tools:text="Send" />

    <android.support.constraint.Barrier
        android:id="@+id/barrier"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:barrierDirection="top"
        app:constraint_referenced_ids="send_button, button"
        app:layout_constraintBottom_toBottomOf="parent" />
</android.support.constraint.ConstraintLayout>

底部按钮水平链接在一起 -这基本上是以前的LinearLayout和重量用法的替代。

还添加了障碍作为底部按钮的高度-这将确保视图寻呼机的高度始终适应于其中任何一个的高度。

如果您实际上希望视图分页器具有换行内容,请添加这些内容

app:layout_constraintWidth_max="wrap"
app:layout_constraintHeight_max="wrap"