android:layout_marginStart
--控件距離開頭View部分的間距大小android:layout_marginEnd
--控件距離結尾View部分的間距大小android:layout_marginLeft
--控件距離左邊View部分的間距大小android:layout_marginRight
--控件距離右邊View部分的間距大小android:layout_above="@id/xxx"
--將控件置於給定ID控件之上android:layout_below="@id/xxx"
--將控件置於給定ID控件之下android:layout_toLeftOf="@id/xxx"
--將控件的右邊緣和給定ID控件的左邊緣對齊android:layout_toRightOf="@id/xxx"
--將控件的左邊緣和給定ID控件的右邊緣對齊android:layout_alignLeft="@id/xxx"
--將控件的左邊緣和給定ID控件的左邊緣對齊android:layout_alignTop="@id/xxx"
--將控件的上邊緣和給定ID控件的上邊緣對齊android:layout_alignRight="@id/xxx"
--將控件的右邊緣和給定ID控件的右邊緣對齊android:layout_alignBottom="@id/xxx"
--將控件的底邊緣和給定ID控件的底邊緣對齊android:layout_alignParentLeft="true"
--將控件的左邊緣和父控件的左邊緣對齊android:layout_alignParentTop="true"
--將控件的上邊緣和父控件的上邊緣對齊android:layout_alignParentRight="true"
--將控件的右邊緣和父控件的右邊緣對齊android:layout_alignParentBottom="true"
--將控件的底邊緣和父控件的底邊緣對齊android:layout_centerInParent="true"
--將控件置於父控件的中心位置android:layout_centerHorizontal="true"
--將控件置於水平方向的中心位置android:layout_centerVertical="true"
--將控件置於垂直方向的中心位置android
android:overScrollMode="never"
當ScrollView到頂部還向上滑動時,是否顯示一個弧度spa