我有一个ScrollView,其中包含RelativeLayout。这都嵌套在RelativeLayout中。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent"
android:background="#2fb136">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/fpScrollView"
android:fillViewport="true">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/fpRelativeLayout">
现在,如果我向ScrollView添加50dp的边距,则RelativeLayout会匹配滚动视图的高度并切断按钮而不是展开并允许滚动。
有关如何解决此问题的任何想法?我希望RelativeLayout实际上包装到内容而不是切断它。
答案 0 :(得分:0)
我找到了解决方案。 ScrollView中的一个视图与水平/垂直中心对齐,这在视图的上下文中没有意义,动态地改变了它的大小。这导致ScrollView中的RelativeLayout只是保持ScrollView的大小而不是包装其内容。
如果您的整个布局是可滚动的,我建议将基本布局设置为ScrollView,而不是像上面那样使用RelativeLayout。