Aligning baseline of two text views in Android

前端 未结 4 947
轻奢々
轻奢々 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:23

    Use RelativeLayout as a container for TextViews and add the attribute

    android:layout_alignBaseline="@+id/title"
    

    to id/language TextView

提交回复
热议问题