Nesting Android ViewPager, Swiping ListItems inside a ListView horizontally(嵌套 Android ViewPager,在 ListView 内水平滑动 ListItems)
问题描述
我在活动的根级别上有一个 ViewPager.
I have a ViewPager on the root-level of an activity.
寻呼机的每个页面都包含一个 ListFragment(由 FragmentPagerAdapter 支持).
Each page of the pager contains a ListFragment (backed by a FragmentPagerAdapter).
某些列表视图项目应包含额外的 ViewPager 以支持滑动这些项目的内容(例如,列表项目内的水平画廊).
Some of the list view items should contain additionally ViewPagers to support swiping the content of those items (e. g. a horizontal gallery inside a list item).
如何嵌套视图寻呼机?ViewPager -> ListView(在页面中)-> ViewPager(在列表项中)
How can I nest view pagers? ViewPager -> ListView (in a page) -> ViewPager (inside a list item)
我可以在 ListFragments 之间水平滑动,也可以垂直滑动整个列表,但不能在列表项内滑动.
I can swipe between the ListFragments horizontally and I can swipe the whole list vertically, but I cannot swipe inside list items.
推荐答案
我在内部ViewPager
添加了一个OnTouchListener
:
private OnTouchListener mSuppressInterceptListener = new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
if(
event.getAction() == MotionEvent.ACTION_DOWN &&
v instanceof ViewGroup
) {
((ViewGroup) v).requestDisallowInterceptTouchEvent(true);
}
return false;
}
};
这只是检测内部 ViewPager
上的 ACTION_DOWN 触摸事件,并防止外部拦截它.因为它返回 false,所以应该只触发 ACTION_DOWN 事件;所有其他事件将被忽略.您可以将此侦听器添加到您想要保护"免受外部 ViewPager
滚动的每个元素,但显然如果您想在这些元素上获取任何其他触摸行为,您需要处理将它们放在触摸侦听器中,并可能实现更好的侦听器.
This just detects ACTION_DOWN touch events on the inner ViewPager
and prevents the outer one from intercepting it. Because it returns false, only the ACTION_DOWN event should be hit; all the other events will be ignored. You can add this listener to every element you want to "protect" from the outer ViewPager
's scrolling, though obviously if you want to pick up any other touch behaviour on those elements you'll need to deal with them inside the touch listener and possibly implement a better listener.
感谢@Rodja,他首先给了我这个想法.
Credit to @Rodja who gave me the idea in the first place.
这篇关于嵌套 Android ViewPager,在 ListView 内水平滑动 ListItems的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:嵌套 Android ViewPager,在 ListView 内水平滑动 ListItems
基础教程推荐
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01