如何使android布局边距自动调整到页面的长度

时间:2017-09-08 07:46:36

标签: android xml

所以在我的activity_page.xml中,我最初的android:layout_marginBottom="75dp"位于我最底部的线性布局中。它适用于大多数页面,但在某些情况下文章太长,某些元素会消失,我必须将大小更改为100dp或125dp才能使元素再次出现,但在文章较短的情况下,额外的空白变得令人讨厌。有没有办法自动调整大小?

1 个答案:

答案 0 :(得分:1)

使用滚动视图。

<ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <LinearLayout
            android:id="@+id/content_layout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
        </LinearLayout>
</ScrollView>