SwipeRefreshLayout使用进度条向下滚动滚动视图

问题描述 投票:0回答:1
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <ScrollView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

        /*
        Something......
        */

    </ScrollView>

</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>

我想用进度条向下滑动滚动视图。像左一个。我怎样才能做到这一点 ?Swipe Down

java android android-studio swiperefreshlayout
1个回答
0
投票

我很确定您可以将androidx.swiperefreshlayout.widget.SwipeRefreshLayout放在ScrollView内

© www.soinside.com 2019 - 2024. All rights reserved.