android:marginTop="20px"
- 在 Android 开发中,XML 布局文件中,上述属性不生效
问题原因
- margin 系列的属性需要加上
layout_
前缀
-
layout_marginTop
:顶部边距 -
layout_marginBottom
:底部边距 -
layout_marginLeft
:左侧边距 -
layout_marginRight
:右侧边距 -
layout_marginStart
:起始边距(针对从左到右的布局) -
layout_marginEnd
:结束边距(针对从右到左的布局)
处理策略
- 确保 margin 系列的属性加上
layout_
前缀
android:layout_marginTop="20px"