- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我提到了 This Question但没有答案对我有用。所以基本上我有一个 BottomNavigationView
,它在向下滚动时隐藏并在向上滚动时显示。当我通过触摸滚动 Recycler View 时它工作正常但当我以编程方式滚动 RecyclerView
时它不起作用。似乎在以编程方式滚动时它不会触发 CoordinatorLayout.Behaviour
。在某些情况下,我必须打开包含 RecyclerView
的 fragment 并滚动到某个位置,并且 BottomNavigationView
隐藏它必须在用户向上滚动时返回这意味着我不不想隐藏 BottomNavigationView
的可见性,只需通过编程方式或触摸方式在滚动时隐藏即可。
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.kliff.digitaldwarka.activity.MainActivity">
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:id="@+id/myAppBar"
app:elevation="0dp"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:contentInsetStart="0dp"
app:popupTheme="@style/AppTheme.PopupOverlay"/>
</android.support.design.widget.AppBarLayout>
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
<android.support.design.widget.BottomNavigationView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:itemBackground="@android:color/white"
android:id="@+id/bottom_nav"
android:layout_gravity="bottom"
app:menu="@menu/bottom_nav_menu"/>
</android.support.design.widget.CoordinatorLayout>
<com.appeaser.sublimenavigationviewlibrary.SublimeNavigationView
android:id="@+id/nav_view"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_gravity="start"
app:snvHeaderLayout="@layout/nav_header"
app:snvMenu="@menu/nav_menu"
style="@style/NavigationViewStyle"
app:snvItemTextColor="#555555"
app:snvSubheaderItemTextColor="#555555"
app:snvItemIconTint="#555555"
app:snvBadgeTextColor="#555555"
app:snvHintTextColor="#757575"
app:snvHintTypefaceStyle="normal"
app:snvBadgeTypefaceStyle="normal"
app:snvSubheaderItemTypefaceStyle="normal"
app:snvItemTypefaceStyle="normal" />
</android.support.v4.widget.DrawerLayout>
fragment_category.xml
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardElevation="1dp"
app:cardUseCompatPadding="true">
<android.support.v7.widget.RecyclerView
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical" />
</android.support.v7.widget.CardView>
Code For scrolling
mRecyclerView.getLayoutManager().scrollToPosition(34); //specific postion
通过这种方式滚动我怎样才能实现这种行为。感谢任何帮助。
最佳答案
CoordinatorLayout.Behaviour 仅适用于 NestedScroll 事件。当您尝试以编程方式滚动 RecyclerView 时,它被视为正常滚动。
写下一行以通知 RecyclerView 启动 NesteadScroll,使用 ViewCompat.SCROLL_AXIS_VERTICAL 和 ViewCompat.TYPE_NON_TOUCH
ViewCompat.SCROLL_AXIS_VERTICAL:表示沿垂直轴滚动。ViewCompat.TYPE_NON_TOUCH:表示手势的输入类型是由非用户触摸屏幕的东西引起的。这通常来自正在稳定的恋情。
recycler_view.startNestedScroll(ViewCompat.SCROLL_AXIS_VERTICAL, ViewCompat.TYPE_NON_TOUCH)
recycler_view.smoothScrollBy(0,200)
关于android - 通过触摸更新 CoordinatorLayout.Behaviour 滚动时,以编程方式滚动 Recycler View 不会更新 CoordinatorLayout.Behaviour,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43626102/
在标题为“Managing Bitmap Memory”的文档中,您可以找到以下声明: Caution: You should use recycle() only when you are sure
另一个Recycler View里面有一个Recycler View,都需要垂直滚动。外部 Recycler View 可以正确滚动,但内部 Recycler View 不能。 代码如下: Linea
几天前,我们在 Play 商店发布了一个应用程序,它处理高质量的位图并且完全是关于编辑它们。 当我们意识到 20% 的设备出现内存不足错误时,一切进展顺利。所以我们检查了我们的代码,发现 Androi
我有两个 Activity :MainActivity 和 Activity2。 MainActivity 只需通过 Intent 打开第二个。 要从 Activity2 返回到 MainActivi
我想在 Jetpack compose 中创建以下布局。 我尝试在垂直可滚动框中创建两个列表,但这是不可能的,因为我得到了这个错误: “java.lang.IllegalStateException:
我在 xml 中使用以下代码生成两个 RadioButtons,它们之间有分隔线: 这工作正常,并且在 ViewPager
我使用以下 xml 可绘制对象作为我的 recyclerview 列表项的背景。 touch_selector.xml touch_selector_base.xml
我进行了很多搜索,我所做的是创建一个项目列表,其中包含简单的数字并具有选中和未选中的复选框,因此当我快速点击列表时,它会崩溃并生成 ArrayIndexOutOfBound Exception 所以我
我正在尝试添加一些点击动画 as shown here在我的回收者看来,但没有成功。这是我的一些代码。 在我的 Activity 中 @Override protected void onCreate
我在回收站 View 中有一个歌曲列表。我需要更改之前播放的行的背景颜色。 所以在我的onBindViewHolder我有这个。 if(activeAudioIndex
对于房间分贝的目的。我想在 Recycler View 中运行一些协程。 必要的挂起函数作为类参数处理: class RecyclerAdapter (private val exist : su
我想创建一个列表,例如 To-Do List。 在此用户可以选择/取消选择一个项目,根据他们的优先级重新排序。在当前情况下,我可以使用 为他们提供上述所有功能。 ItemTouchHelper.Sim
我必须与 IBinder 合作s 和 Parcel s。我已经浏览了所有 IBinder , Binder , 和 Parcel文档,找不到任何关于何时调用 Parcel.recycle 的内容(我也
我正在尝试将回收站 View 滚动到底部,但问题是我的行项目高度是否大于滚动停止在项目顶部的屏幕高度。是否可以手动滚动到回收站 View 的最底部? recyclerView.scrollToPosi
我的 Activity 有一个谷歌的 ViewModel 来获取一些模型项目。然后将这些项目转换为 RecyclerView 的适配器项目。一个 RecyclerView 还支持多种类型的适配器项。
我目前正在开发一个 Azure 项目,该项目可在本地使用模拟器资源 100% 运行。我现在正在尝试部署辅助角色,但遇到了一个问题,我不确定如何解决。 在我的 Azure 门户中部署辅助角色后,这两个实
我正在为我的回收站 View 项目使用约束布局。为了动画(展开/折叠)它们,我使用约束集动画。开场动画在所有项目上运行良好。关闭动画也运行良好,但是当关闭动画在不是最后一个的项目上开始时,所有项目在动
我一直在尝试让自定义Recycler View 适配器工作。我不太明白为什么它不起作用。我觉得奇怪的是自定义适配器的代码不执行(因为当我在那里放置断点时它不会中断)并且我确定我绑定(bind)了自定义
我想使用 Firebase 制作一个杂务应用程序,它有 2 个输入:描述和类。每当我运行该应用程序时,显示的屏幕都是空白的(标题除外)没有可能显示问题的明确指示或错误。这些是最富有成果的 logCat
我想使用 Firebase 制作一个杂务应用程序,它有 2 个输入:描述和类。每当我运行该应用程序时,显示的屏幕都是空白的(标题除外)没有明确的指示或错误可能显示问题。这些是最富有成果的 logCat
我是一名优秀的程序员,十分优秀!