RelativeLayout和垂直边距(保证金顶部,保证金底部)不适合我为什么?

时间:2016-11-13 14:37:38

标签: android android-view android-relativelayout

在RelativeLayout中,如果layout_centerVertical或layout_centerInParent为真,则垂直边距(页边距,边距底部)对我来说不起作用?

<RelativeLayout>`
` 
    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_marginTop="900dp"
        android:background="#36648b"
        android:src="@drawable/ic_star_black_24dp"
        />

 </RelativeLayout>`

enter image description here

1 个答案:

答案 0 :(得分:0)

当你{4}}你的ImageView时,它被准确地放在父视图的中心。

如果对象位于视图顶部的90px范围内,

layout_marginTop="[##]dp"会影响您的布局。因此,向下推中心视图以在其上保持至少90px的空间。所以它不会被忽略,但它没有你认为它应该具有的效果。

  

来源:SVG