Android的RelativeLayout的view的layout_marginBottom不起作用

当RelativeLayout的view设置了layout_alignParentBottom属性以后,该view的layout_marginBottom会不起作用。或者其他的一些属性不起作用的时候,就需要在该view的外面再加一层layout才起作用。创建一个layout具有一下属性,然后在里面添加view。。

android:id="@+id/gap" android:layout_width="wrap_content" android:layout_height="0dip" android:layout_alignParentBottom="true"

你可能感兴趣的:(Android的RelativeLayout的view的layout_marginBottom不起作用)