Aligning baseline of two text views in Android

前端 未结 4 867
轻奢々
轻奢々 2021-02-18 18:49

please find below my layout & its result ; I need the text \'Text message\' to align on the baseline of the text \'Header\'(Please find bel

4条回答
  •  一向
    一向 (楼主)
    2021-02-18 19:15

    For ConstraintLayout just use this↓ to align to another textView baseline:

    app:layout_constraintBaseline_toBaselineOf="@+id/textView"
    

提交回复
热议问题