问题标签 [nestedscrollview]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - NestedScollview 下方的 Recyclerview 布局
在我的应用程序中,我有一个包含 TextView 的 NestedScrollView。我想在 NestedScrollView 下添加一个 RecyclerView 但它没有显示任何内容。这是我的布局 xml 文件
activity_main.xml
content_scrolling.xml
recyclerview_content.xml
这是我的片段,其中包含带有 StaggeredviewLayout 管理器的 Recyclerview。
谢谢你的时间。
android - Recyclerview inside scrollview- How to scroll whole content?
I am having Recyclerview inside Scrollview
Now while scrolling, layoutStaticContent stays fix on the top & recyclerview content scrolls independently in the bottom part. How to scroll the whole content i.e (layoutStaticContent + recyclerview content) such that there is only 1 scrollview? I also tried replacing scrollview with Nestedscrollview but no success.
android - 如果使用 Android 中的 CollapsingToolbarLayout 和 Nested ScrollView 将数据装入显示器,则删除滚动
NestedScrollView
当我滚动图像时,我在内部使用了一些静态数据,它的工作正常。但是当屏幕尺寸很大时,我的所有数据都适合屏幕,那时我想禁用我的滚动。怎么做。
我的代码
android - 如何处理 NestedScrollView 中的滚动
我想要做的是处理滚动 NestedScrollView。但是当我“setOnScrollChangedListener”到它,然后我滚动视图时,什么也没有发生,甚至没有调用“setOnScrollChangedListener”方法......谁能告诉我为什么?什么时候会调用“setOnScrollChangedListener”方法?
在 MainActivity 中,我想听滚动。我确实喜欢这样:
android - 在 CoordinatorLayout 中滚动查看仅显示部分视图
我制作了一个包含 CoordinatorLayout、AppBar 和 NestedScrollView 的 Android 应用程序。在我的 NestedScrollView 中,我有一个项目列表,以及一个滚动到我的 NestedScrollView 中的项目的按钮。
单击按钮时,Android 应用程序向下滚动到该项目,但不显示整个项目,仅显示部分:http: //i.stack.imgur.com/8kuq0.png
我期望类似以下内容:http: //i.stack.imgur.com/k0A5N.png
看起来应用程序需要滚动的量与 AppBar 的大小大致相同,以便显示整个视图。如果我在下面的布局文件中删除滚动标志,我会得到预期的行为。
我做错了什么?
更新(2016 年 12 月 1 日):我已经更新了图片,所以它们更大了。此外,正如我在 Herry 的回复中所写,我怀疑 View.requestRectangleOnScreen() 是否是正确的调用方法,或者我是否应该使用与 NestedScrollView 不同的布局。
我的活动编码如下:
和布局文件:
android - 带有 ImageView 和 Recycler 视图的 NestedScrollView
Recycler 视图在 imageview 内滚动,而 imageview 保持静止。我的要求是在滚动 recyclerview 时滚动两个视图。我编写的 xml 如下所示:
如何实现这种类型的滚动?
android - CoordinatorLayout 中的 NestedScrollView 不显示过度滚动
我有NestedScrollView
一些文本,因为那是在
CoordinatorLayout
,当我将它滚动到末尾时NestedScrollView
不会显示过度滚动效果,我的猜测是当我到达末尾并尝试滚动更多时,我不会滚动 nestedScrollView 但我滚动CoordinatorLayout
。
android - 如何使用 NestedScrollView 删除 CoordinatorLayout 底部的空白区域
我正在与CoordinatorLayout
我AppbarLayout
一起使用的ViewPager
,Nestedscrollview
和TabLayout
. 在布局的滚动AppbarLayout
折叠和展开。
现在的问题是这个布局的滚动它在底部留下了我不想要的空白区域。
这是我的抽屉布局:
NestedScrollView 的代码:
我正在分享这个问题的视频点击:
https://www.dropbox.com/s/9yojeq2yw1eebps/layout_height_issue.mp4?dl=0
从过去三天开始,我一直在努力解决这个问题。
任何帮助将不胜感激。
android - NestedScrollView里面的WebView不能滚动
我有一个WebView
用于加载 Web 内容的活动。当我想用图像实现灵活空间时,问题就出现了。我可以展开和折叠Toolbar
,但是当Toolbar
已经折叠时,滚动条卡在那里。我无法滚动WebView
.
这是 XML:
你有什么解决办法吗?
问候, 埃尔默
编辑 在我查看了 LinX64 给出的链接之后。我试图添加:
仍然卡住了。
编辑 2 仅供参考:我在 ASUS Zenfone 6 - KitKat 4.4.2 上尝试过 KitKat 是否可能无法正确加载?
编辑 3:我对这个问题的最佳解决方案
解决之后,我想我无法使用 CollapsingToolbarLayout 结合 WebView 获得我想要的灵活空间体验,所以我将 WebView 更改为 TextView 并用于Html.fromHtml()
阅读内容。除非 Google 会更新或修复某些功能,否则我们可以将 CollapsingToolbarLayout 和 WebView 结合在一起。
android - NestedScrollView & RecyclerView, onLongPress 事件
我有布局:
在 .java 文件中:
RecyclerItemClickListener.java:
它正在工作,但我对 OnLongClick 事件有问题,如果在 RecyclerView 项目上开始滚动,它正在调用onItemLongClick
.
如何防止onItemLongClick
滚动 NestedScrollView 上的事件 RecyclerView ?