我想要一个marginTop& marginLottout上的marginBottom,但只有marginTop似乎有效。 MarginBottom完全没有效果。我正在使用9-patch-png作为背景,但RelativeLayout的底部看起来已被切断。
这是我的应用中的结构:(旧的,不工作)
FrameLayout
ScrollView
RelativeLayout (layout_marginTop="**", layout_marginBottom="**")
--Content/Views--
/RelativeLayout
/ScrollView
/Framelayout
(新的,有效的)
FrameLayout
ScrollView
LinearLayout
RelativeLayout (layout_marginTop="**", layout_marginBottom="**")
--Content/Views--
/RelativeLayout
/LinearLayout
/ScrollView
/Framelayout