Fixed
Status Update
Comments
fr...@instacart.com <fr...@instacart.com> #2
Here's a sample app that shows this issue:
https://github.com/SimpleNexus/simplecallerid/
When you import it and update gradle version as the IDE suggests, it fails to build.
When you import it and update gradle version as the IDE suggests, it fails to build.
ju...@gmail.com <ju...@gmail.com> #3
Hi there, thank you for reporting this issue.
This was a problem with the constraint layout library, which used attributes under declare styleables without defining them. This has been fixed in constraint layout version 2.0.0 beta 3. You can read more about the issue inhttps://issuetracker.google.com/136103084
This was a problem with the constraint layout library, which used attributes under declare styleables without defining them. This has been fixed in constraint layout version 2.0.0 beta 3. You can read more about the issue in
so...@gmail.com <so...@gmail.com> #4
@3 Hello, I can't use beta 3 and beta 2, because of serious issues that I've reported about.
Here's about beta 3:
https://issuetracker.google.com/issues/143411144
Here's about beta 3:
ni...@google.com <ni...@google.com> #5
You can workaround the missing attribute issue by *temporarily* adding it locally in your values/attrs.xml: <attr name="flow_horizontalSeparator"/>
Description
sample layout where I discovered the issue :
```
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="
xmlns:app="
xmlns:tools="
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/ic__order_changes_row_background"
android:elevation="@dimen/ic__order_changes_row_elevation"
android:paddingTop="8dp"
android:paddingBottom="8dp">
<androidx.constraintlayout.widget.Guideline
android:id="@+id/ic__order_changes_guideline_start"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_begin="@dimen/ic__order_changes_keyline" />
<androidx.constraintlayout.widget.Guideline
android:id="@+id/ic__order_changes_keyline_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_begin="@dimen/il__displays_keyline_2" />
<androidx.constraintlayout.widget.Guideline
android:id="@+id/ic__order_changes_guideline_end"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_end="@dimen/ic__order_changes_keyline" />
<com.instacart.client.core.views.text.ICNonActionTextView
android:id="@+id/ic_order_changes_item_quantity"
style="@style/ICOrderChanges_Title"
android:layout_width="48dp"
android:layout_height="0dp"
android:gravity="start|center_vertical"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toEndOf="@id/ic__order_changes_guideline_start"
app:layout_constraintTop_toTopOf="parent"
tools:text="1" />
<ImageView
android:id="@+id/ic__order_changes_item_image"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_marginStart="8dp"
android:layout_marginTop="11dp"
android:layout_marginBottom="11dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toEndOf="@id/ic__order_changes_keyline_2"
app:layout_constraintTop_toTopOf="parent"
tools:ignore="ContentDescription"
tools:src="@tools:sample/avatars" />
<ImageView
android:id="@+id/ic__order_changes_item_image_icon"
android:layout_width="22dp"
android:layout_height="22dp"
android:scaleType="fitXY"
app:layout_constraintBottom_toTopOf="@id/ic__order_changes_item_image"
app:layout_constraintEnd_toEndOf="@id/ic__order_changes_item_image"
app:layout_constraintStart_toEndOf="@id/ic__order_changes_item_image"
app:layout_constraintTop_toTopOf="@id/ic__order_changes_item_image"
tools:ignore="ContentDescription"
tools:src="@drawable/snacks_checkmark_circle_filled" />
<com.instacart.client.core.views.text.ICNonActionTextView
android:id="@+id/ic__order_changes_item_status"
style="@style/ICOrderChanges_Item_Name"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:paddingBottom="2dp"
android:visibility="gone"
android:textColor="@color/red_500"
android:textSize="12sp"
app:layout_constraintBottom_toTopOf="@+id/ic__order_changes_item_name"
app:layout_constraintEnd_toEndOf="@+id/ic__order_changes_item_name"
app:layout_constraintStart_toStartOf="@+id/ic__order_changes_item_name"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_chainStyle="packed"
tools:text="By your request" />
<com.instacart.client.core.views.text.ICNonActionTextView
android:id="@+id/ic__order_changes_item_name"
style="@style/ICOrderChanges_Item_Name"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="23dp"
android:ellipsize="end"
android:maxLines="2"
app:layout_constraintBottom_toTopOf="@+id/ic__order_changes_item_qty"
app:layout_constraintEnd_toStartOf="@+id/ic__order_changes_barrier_price"
app:layout_constraintStart_toEndOf="@+id/ic__order_changes_item_image"
app:layout_constraintTop_toBottomOf="@+id/ic__order_changes_item_status"
tools:layout_constraintEnd_toStartOf="@+id/ic_order_changes_item_price"
tools:text="Odwalla Original Superfood 100%" />
<com.instacart.client.core.views.text.ICNonActionTextView
android:id="@+id/ic__order_changes_item_qty"
style="@style/ICOrderChanges_Item_Name"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:paddingTop="2dp"
android:textColor="@color/text_color_tertiary"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="@+id/ic__order_changes_item_name"
app:layout_constraintStart_toStartOf="@+id/ic__order_changes_item_name"
app:layout_constraintTop_toBottomOf="@+id/ic__order_changes_item_name"
tools:text="9.6oz" />
<com.instacart.client.core.views.text.ICNonActionTextView
android:id="@+id/ic_order_changes_item_price"
style="@style/ICOrderChanges_Price"
android:layout_width="72dp"
android:layout_height="wrap_content"
android:gravity="center|end"
android:lines="1"
app:layout_constraintBottom_toTopOf="@+id/ic_order_changes_item_price_second"
app:layout_constraintEnd_toStartOf="@id/ic__order_changes_guideline_end"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_chainStyle="packed"
tools:text="$55.55" />
<com.instacart.client.core.views.text.ICNonActionTextView
android:id="@+id/ic_order_changes_item_price_second"
style="@style/ICOrderChanges_Price"
android:layout_width="72dp"
android:layout_height="wrap_content"
android:gravity="center|end"
android:lines="1"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@id/ic__order_changes_guideline_end"
app:layout_constraintTop_toBottomOf="@+id/ic_order_changes_item_price"
tools:text="$1155.55" />
<androidx.constraintlayout.widget.Barrier
android:id="@id/ic__order_changes_barrier_price"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:barrierDirection="start"
app:constraint_referenced_ids="ic_order_changes_item_price,ic_order_changes_item_price_second"
tools:visibility="gone" />
</androidx.constraintlayout.widget.ConstraintLayout>
```
in this layout , ic__order_changes_item_status is gone.
I would expect the 2 remaining views in this vertical chain to center themselves in all the available vertical space BUT they act as if the bias was "0".
Same behavior if I explicitly set the bias to 0.5
Downgrading to beta 3 solved the issue.