我尝试了许多答案,但我认为ScrollView包含更多元素。
ScrollView doesn't scroll to the bottom
Android scroll view does not scroll all the way down
即使我尝试使用NestedScrollView,边距底部,填充,甚至在子布局上使用android:descendantFocusability =“ blocksDescendants”,以及另一种大型线性布局,都包括ScrollView中的每个元素,但没有结果...
问题是我的ScrollView没有滚动到它的底部 视图。我不得不说,滚动视图在水平线以下 设定为35%的指导原则,可能是原因之一 这个可恶吗?
我将插入XML代码示例
<androidx.constraintlayout.widget.Guideline
android:id="@+id/guideline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintGuide_percent="0.35" />
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/guideline"
app:layout_constraintVertical_bias="0.0">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:descendantFocusability="blocksDescendants"
android:baselineAligned="false"
android:orientation="horizontal">
<LinearLayout
android:id="@+id/linearLayout_dummy1"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="0.1"
android:orientation="horizontal" />
<!-- This is the part that's 85% of the total width.-->
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="0.9"
android:orientation="vertical">
<LinearLayout
android:id="@+id/linearLayoutInside"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:id="@+id/anotherlayout"
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_weight="1"
android:background="@drawable/rounded_shape"
android:baselineAligned="false">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.26"
android:orientation="horizontal">
....
....
much more linear and constraints layouts that opens then closes
</LinearLayout>
</LinearLayout>
</LinearLayout>
</LinearLayout>
<!--Width 85% ends-->
<LinearLayout
android:id="@+id/linearLayout_dummy2"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight=".1"
android:orientation="horizontal" />
</LinearLayout>
</ScrollView>
此外,这是一个“图像”(不要笑-不太难:)),显示内容无需滚动即可显示。如果我滚动,它将无法到达底部:
答案 0 :(得分:0)
您的xml布局中有一些错误。缺少用于linearlayout的两个关闭标签,您的滚动视图应位于准则小部件内。