Is there any way to have UI elements slightly overlap (one on top of one another) without using absolute layouts?

后端 未结 3 1636
渐次进展
渐次进展 2021-01-19 17:40

Lets say I have a list on screen, which I always want to be usable. I also want a small image or textview to slightly overlap the listview. Is anything this possible without

3条回答
  •  暖寄归人
    2021-01-19 18:26

    You could use RelativeLayout and set for example android:layout_marginTop="-50dip" android:layout_below="@id/my_list".

提交回复
热议问题