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