Circular dependencies cannot exist in RelativeLayout, android?

前端 未结 4 1097
Happy的楠姐
Happy的楠姐 2020-11-28 10:59

I have the following layout: I need to keep the button at the bottom of screen and it should be visible to the user. The rest of the layout should scroll.

          


        
4条回答
  •  暖寄归人
    2020-11-28 11:23

    Add android:layout_alignParentTop="true" in your scrollView and delete android:layout_below="@+id/scrollView1" in the bottomLinearLayout.

提交回复
热议问题