3

在我的应用程序中,我有一个自定义布局,它使用约束布局来显示两个视图,如下所示。

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
       xmlns:android="http://schemas.android.com/apk/res/android"
       xmlns:tools="http://schemas.android.com/tools"
       xmlns:app="http://schemas.android.com/apk/res-auto"
       android:layout_width="match_parent"
       android:layout_height="match_parent"
       android:orientation="vertical">

    <android.support.constraint.Guideline
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/guideline2"
        android:orientation="horizontal"
        tools:layout_editor_absoluteY="444dp"
        tools:layout_editor_absoluteX="0dp"
        app:layout_constraintGuide_percent="0.5"/>

    <CategorySelectionLayout
        android:id="@+id/categoryList"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:orientation="horizontal"
        android:gravity="center_vertical"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toTopOf="@+id/guideline2"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintRight_toRightOf="parent" />
    <CategoryNavigationLayout
        android:id="@+id/navigation"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:orientation="horizontal"
        android:gravity="center_vertical"
        android:paddingLeft="@dimen/one_grid"
        tools:layout_manager="android.support.v7.widget.LinearLayoutManager"
        tools:listitem="@layout/order_selection_item"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintHorizontal_bias="1.0"
        app:layout_constraintBottom_toTopOf="@+id/guideline2" />
</android.support.constraint.ConstraintLayout>

现在想象一下,当 categoryList 内没有可显示的内容时,我想隐藏它(View.GONE),然后调整约束布局的大小以仅使用导航布局所需的空间。

我试图在自定义视图中设置可见性。

this.visibility = View.GONE
this.parent.requestLayout()

该视图现在被隐藏,但父级没有相应地调整大小。

那么如何强制这个 ConstraintLayout 重新调整它的大小呢?

4

1 回答 1

8

您遇到的问题只是您的第二个视图受到指南的约束——第一个视图也是如此。准则本身受限于容器。

这意味着您将第一个视图标记为GONE- 是的,它会消失并不重要,但这根本不会影响布局:

  • 该指南仅限于父母,所以它不在乎
  • 可见的视图受限于父级和准则,因此也不在乎。

因此,除了视图消失之外没有任何变化是完全正常的。

为了做你想做的事,你可以做这样的事情:

    final View viewA = findViewById(R.id.viewA);
    final View guideline = findViewById(R.id.guideline);
    Button button = (Button) findViewById(R.id.button);
    button.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            ConstraintLayout.LayoutParams params = (ConstraintLayout.LayoutParams) guideline.getLayoutParams();
            if (viewA.getVisibility() == View.GONE) {
                viewA.setVisibility(View.VISIBLE);
                params.guidePercent = 0.5f;
            } else {
                viewA.setVisibility(View.GONE);
                params.guidePercent = 0;
            }
            guideline.setLayoutParams(params);
        }
    });

这将改变指南的位置,这将使布局做出反应。

我粘贴 XML 只是为了详尽无遗,但这几乎就是您所拥有的:

<android.support.constraint.Guideline
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/guideline"
    android:orientation="horizontal"
    tools:layout_editor_absoluteY="303dp"
    tools:layout_editor_absoluteX="0dp"
    app:layout_constraintGuide_percent="0.50248754" />

<View
    android:id="@+id/viewA"
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:background="@color/colorAccent"
    android:text="Button"
    app:layout_constraintBottom_toTopOf="@+id/guideline"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

<View
    android:id="@+id/viewB"
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:layout_marginTop="8dp"
    android:background="@color/colorPrimary"
    android:text="Button"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="@+id/guideline" />

<Button
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginBottom="16dp"
    android:layout_marginEnd="24dp"
    android:layout_marginRight="24dp"
    android:text="Toggle"
    app:layout_constraintBottom_toBottomOf="@+id/viewB"
    app:layout_constraintRight_toRightOf="@+id/viewB" />

在此处输入图像描述

于 2016-10-11T04:55:20.077 回答