我创建了一个滚动视图,它允许我滚动浏览线性布局内部的所有内容(这是滚动视图的子项)。
代码如下所示:
sujet === "ALSACE"
预览看起来像这样:
但在我的应用中,我有这个:
我无法向下滚动,这是我能看到的全部内容。
如果我允许旋转我有水平视图:
现在允许我滚动但完全切断按钮。 (在图片的底部是视图)我可以快速拉下来,我可以看到按钮在那里,但它再次上升(这个机器人的东西,你可以稍微拉一点,但它向后滚动)
我该如何解决这个问题?
主持活动:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="pl.oakfusion.delegator.DomesticDelegationSecondFragment">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
....
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="25dp"
android:layout_marginTop="25dp"
android:background="@color/textDarkest"
android:text="Save"
android:textColor="@color/textColor"
android:layout_gravity="right" />
</LinearLayout>
答案 0 :(得分:0)
尝试将此添加到xml布局中的scrollView
android:fillViewport="true"
答案 1 :(得分:0)
我曾经遇到过同样的问题。我尝试在ScrollView中为ViewGroup添加填充。然后工作正常。这是一种骇人听闻的解决方案,而不是理想的解决方案。
对于上述示例(通过user3212350): 我在ScrollView内部的LinearLayout中添加了一些填充,以使视图完全可见。各种屏幕尺寸所需的填充量可能会有所不同。
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="pl.oakfusion.delegator.DomesticDelegationSecondFragment">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
##android:paddingBottom="50dp"##>
....
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="25dp"
android:layout_marginTop="25dp"
android:background="@color/textDarkest"
android:text="Save"
android:textColor="@color/textColor"
android:layout_gravity="right" />
</LinearLayout>