I try to implement layout from the picture. The problem is TextView - I need to wrap short text and ellipsize long one at the same time, but just can't achieve this:
layout_width="wrap_content"- wrap is OK, but of course ellipsize is NOT (because no constraints applied, when wrap_content used)layout_width="0dp"- wrap not workinglayout_width="0dp"+constraintWidth_default="wrap"- wrap is OK, ellipsize is NOT
Also tried to play with constrainedWidth="true", but had no any visible effect.
