您的位置:首页 > 移动开发 > Android开发

Android相对布局 layout_marginBottom无效

2017-08-09 17:51 585 查看
Android 相对布局使用了layout_marginBottom 无效

需要在下面添加布局,如下:

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<ImageView
android:id="@+id/the_iv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"/>

<View
android:layout_width="0px"
android:layout_height="0px"
android:layout_below="@id/the_iv"/>
</RelativeLayout>

在下面添加了宽高都为0的布局了,layout_marginBottom有效,能正确显示了
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  Android