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"