Android-ScrollView中自动滚动LinearLayout?

时间:2018-07-17 10:44:00

标签: android scrollview android-linearlayout

我在ScrollView中有一个垂直的LinearLayout。 LinearLayout动态增长。每当按下按钮(在scrollview之外)时,我都会向此LinearLayout添加片段,添加片段,我也可以看到scollbar,但我希望滚动条自动滚动到我添加的最后一个元素。当前没有自动滚动,我必须手动滚动才能看到最后一个元素。

<ScrollView
    android:id="@+id/scrollView2"
    android:layout_width="557dp"
    android:layout_height="440dp"
    android:layout_marginBottom="8dp"
    android:layout_marginEnd="8dp"
    android:layout_marginStart="8dp"
    android:layout_marginTop="8dp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/textView16"
    app:layout_constraintVertical_bias="0.131"
    >

    <LinearLayout
        android:id="@+id/linear_layout_1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        >

    </LinearLayout>
</ScrollView>

2 个答案:

答案 0 :(得分:2)

请使用recyclerView而不是scrollView。 这是使用scrollView持续使用的示例。

mScrollView.fullScroll(ScrollView.FOCUS_DOWN);

mScrollView.postDelayed(new Runnable() {
@Override
public void run() {
    scroll.fullScroll(ScrollView.FOCUS_DOWN);
}}, 700);

答案 1 :(得分:1)

您可以在添加片段时自动滚动。

scrollView.smoothScrollTo(0,scrollView.getBottom);