如何让coordinatorlayout自动往上滚动 android
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何让coordinatorlayout自动往上滚动 android相关的知识,希望对你有一定的参考价值。
参考技术A 一个自动滚动,轮播循环视图组件。使用(1) 引入公共库引入android Auto Scroll ViewPager@Github作为你项目的library(如何拉取代码及添加公共库)。(2) 调用仅需简单两步:a. 布局定义<cn.trinea.android.view.autoscrollviewpager.AutoScrollViewPager android:id="@+id/view_pager" android:layout_width="match_parent" android:layout_height="wrap_content" />代替一般的ViewPager定义b. 启动ViewPager自动滚动startAutoScroll() 启动自动滚动stopAutoScroll() 停止自动滚动3、设置setInterval(long) 设置自动滚动的间隔时间,单位为毫秒setDirection(int) 设置自动滚动的方向,默认向右setCycle(boolean) 是否自动循环轮播,默认为truesetScrollDurationFactor(double) 设置ViewPager滑动动画间隔时间的倍率,达到减慢动画或改变动画速度的效果setStopScrollWhenTouch(boolean) 当手指碰到ViewPager时是否停止自动滚动,默认为truesetSlideBorderMode(int) 滑动到第一个或最后一个Item的处理方式,支持没有任何操作、轮播以及传递到父View三种模式setBorderAnimation(boolean) 设置循环滚动时滑动到从边缘滚动到下一个是否需要动画,默认为true4、其他(1) 指示器,圆形或是方形指示器请配合ViewPagerIndicator使用(2)无限循环,如果希望在最后一张继续播放第一张而不是退回到第一张,请参考AutoScrollViewPagerSingleDemo.java,注意这个特性不能和 ViewPagerIndicator 使用。要是还不能解决?你来我们群里说吧 这里是开发者互相学习交流的有大神 让他们给你解释你的疑问 q un号: 1881 68040 参考技术B http://www.cnblogs.com/wingyip/p/4604472.htmlAndroid:CoordinatorLayout 和 SwipeRefreshLayout
【中文标题】Android:CoordinatorLayout 和 SwipeRefreshLayout【英文标题】:Android: CoordinatorLayout and SwipeRefreshLayout 【发布时间】:2015-08-17 21:38:32 【问题描述】:我尝试从新的支持库 22.2.0 中实现自动隐藏工具栏功能。没有 SwipeRefreshLayout 工作正常:
但是当我重新添加这个布局时,工具栏重叠 recyclerview:
代码:
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_
android:layout_
android:fitsSystemWindows="true">
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:fab="http://schemas.android.com/apk/res-auto"
android:layout_
android:layout_>
<android.support.design.widget.AppBarLayout
android:layout_
android:layout_>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_
android:layout_
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_scrollFlags="scroll|enterAlways"/>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/swipe_container"
android:layout_
android:layout_>
<android.support.v7.widget.RecyclerView
android:id="@+id/cardList"
android:layout_
android:layout_
android:scrollbars="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</android.support.v4.widget.SwipeRefreshLayout>
</android.support.design.widget.CoordinatorLayout>
</android.support.v4.widget.DrawerLayout>
2020 年 Androidx 更新:
代码:
<androidx.drawerlayout.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_
android:layout_
android:fitsSystemWindows="true">
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:fab="http://schemas.android.com/apk/res-auto"
android:layout_
android:layout_>
<com.google.android.material.appbar.AppBarLayout
android:layout_
android:layout_>
<androidx.appcompat.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_
android:layout_
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_scrollFlags="scroll|enterAlways"/>
</com.google.android.material.appbar.AppBarLayout>
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/swipe_container"
android:layout_
android:layout_>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/cardList"
android:layout_
android:layout_
android:scrollbars="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</androidx.drawerlayout.widget.DrawerLayout>
知道如何解决这个问题吗?
【问题讨论】:
【参考方案1】:将滚动行为设置为SwipeRefreshLayout
而不是RecyclerView
。
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
android:id="@+id/swipe_container"
android:layout_
android:layout_
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/cardList"
android:layout_
android:layout_
android:scrollbars="vertical" />
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
【讨论】:
@Tomas 我想问您是否注意到,如果您开始滚动直到 AppBarLayout 完全展开(verticalOffset 达到 0)并且您继续滚动 SwipeRefreshLayout 的刷新指示器出现,因此用户将也能触发这个动作。至少在我这边很容易重现,RecyclerView 上只有几个元素。任何帮助将不胜感激。 @ZsoltBoldizsár 见 ***.com/questions/30779667/… 为我工作以上是关于如何让coordinatorlayout自动往上滚动 android的主要内容,如果未能解决你的问题,请参考以下文章
jquery判断页面滚动条(scroll)是上滚还是下滚,且是否滚动到头部或者底部
jquery判断页面滚动条(scroll)是上滚还是下滚,且是否滚动到头部或者底部
知识必备一文让你搞懂design设计的CoordinatorLayout和AppbarLayout联动,让Design设计更简单~