I have three TextViews \"hi\"
, \"x\"
and \"Hello World\"
which I would like to align in the bottom of the Hello World text (ie hi_x_World)
AFAIK, there is no way to accomplish this task using ConstraintLayout as of today.
If you know the content of the "helloWorldTextView" in advance, you might wanna split the lines into several textViews and then use app:layout_constraintBaselineToBaselineOf
.
I know this is a tricky workaround, but it's the only way that comes to mind.