问题:底部边距或填充在 Android 上的 XML 的相对布局中不起作用。
答案:
这个问题可能涉及多个因素导致底部边距或填充无法正常工作。以下是一些建议的解决方案。
layout_marginBottom
或 layout_marginTop
属性来设置底部边距。<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="16dp" <!-- 或使用 "16dp" 替代 -->
android:orientation="vertical">
<!-- Your content here -->
</RelativeLayout>
setMargins()
和 setPadding()
方法的参数是否正确。app:layout_constraintBottom_toBottomOf
约束,将一个视图固定在底部。请注意,本答案提供了多种可能的解决方案,但最佳解决方案取决于你的具体需求。
领取专属 10元无门槛券
手把手带您无忧上云