Fixed
Status Update
Comments
ku...@google.com <ku...@google.com>
ku...@google.com <ku...@google.com> #2
Assigning to AndroidX > Constraint Layout.
an...@google.com <an...@google.com> #4
ni...@google.com <ni...@google.com> #5
Make that 4.0 beta 1 :)
zs...@gmail.com <zs...@gmail.com> #6
Excuse me, can someone tell me what is "4.0"? Is this bug fixed and released?
sa...@gmail.com <sa...@gmail.com> #7
Is this issue fixed?
mu...@gmail.com <mu...@gmail.com> #8
Comment has been deleted.
mu...@gmail.com <mu...@gmail.com> #9
Android Studio Flamingo | 2022.2.1 Patch 2
Build #AI-222.4459.24.2221.10121639, built on May 12, 2023
The bug still exists
Build #AI-222.4459.24.2221.10121639, built on May 12, 2023
The bug still exists
Description
```
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintEnd_toEndOf="@+id/flow"
app:layout_constraintStart_toEndOf="@+id/flow">
<TextView
android:id="@+id/header"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textIsSelectable="false"
app:layout_constrainedWidth="true"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:text="Header" />
<android.support.constraint.helper.Flow
android:id="@+id/flow"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:constraint_referenced_ids="header,recyclerView_cardList"
app:flow_horizontalBias="0"
app:flow_horizontalStyle="spread_inside"
app:flow_wrapMode="chain"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView_cardList"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layoutManager="android.support.v7.widget.LinearLayoutManager"
app:layout_constraintStart_toStartOf="parent"
app:reverseLayout="true"
tools:ignore="MissingConstraints"
tools:itemCount="10">
</android.support.v7.widget.RecyclerView>
```
, implement that module in application this time use androidx add `androidx.constraintlayout:constraintlayout:2.0.0-beta2` and enable Jetifier too.
- Jetifier try to transform `android.support.constraint.helper.Flow` to `androidx.constraintlayout.widget.helper.Flow` but there is no class exist in that package and correct one is androidx.constraintlayout.helper.widget.Flow
- it should map to helper.widget.Flow not widget.helper.Flow