In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-09-15 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
What this article shares with you is about the integration of ScrollView nested Viewpager and ListView. The editor thinks it is very practical, so I share it with you to learn. I hope you can get something after reading this article.
1. ScrollView nested Viewpager to resolve sliding conflicts:
(1) re-ScrollView (Law I)
/ * * ScrollView * @ Description compatible with ViewPager: solved the problem of sliding and bouncing of ViewPager in ScrollView * / public class ScrollViewExtend extends ScrollView {/ / sliding distance and coordinates private float xDistance, yDistance, xLast, yLast; public ScrollViewExtend (Context context, AttributeSet attrs) {super (context, attrs);} @ Override public boolean onInterceptTouchEvent (MotionEvent ev) {switch (ev.getAction ()) {case MotionEvent.ACTION_DOWN: xDistance = yDistance = 0f; xLast = ev.getX () YLast = ev.getY (); break; case MotionEvent.ACTION_MOVE: final float curX = ev.getX (); final float curY = ev.getY (); xDistance + = Math.abs (curX-xLast); yDistance + = Math.abs (curY-yLast); xLast = curX; yLast = curY; if (xDistance > yDistance) {return false;} return super.onInterceptTouchEvent (ev);}}
(2) re-ScrollView (method II)
Public class MyScrollView extends ScrollView {
Private boolean canScroll
Private GestureDetector mGestureDetector
View.OnTouchListener mGestureListener
Public MyScrollView (Context context, AttributeSet attrs) {
Super (context, attrs)
MGestureDetector = new GestureDetector (new YScrollDetector ())
CanScroll = true
}
@ Override
Public boolean onInterceptTouchEvent (MotionEvent ev) {
If (ev.getAction () = = MotionEvent.ACTION_UP)
CanScroll = true
Return super.onInterceptTouchEvent (ev) & & mGestureDetector.onTouchEvent (ev)
}
Class YScrollDetector extends SimpleOnGestureListener {
@ Override
Public boolean onScroll (MotionEvent E1, MotionEvent e2, float distanceX, float distanceY) {
If (canScroll)
If (Math.abs (distanceY) > = Math.abs (distanceX))
CanScroll = true
Else
CanScroll = false
Return canScroll
}
}
}
The individual is solved with the first method, and can be dealt with by himself according to different circumstances!
The above is how the integration of ScrollView nested Viewpager and ListView is. The editor believes that there are some knowledge points that we may see or use in our daily work. I hope you can learn more from this article. For more details, please follow the industry information channel.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
The market share of Chrome browser on the desktop has exceeded 70%, and users are complaining about
The world's first 2nm mobile chip: Samsung Exynos 2600 is ready for mass production.According to a r
A US federal judge has ruled that Google can keep its Chrome browser, but it will be prohibited from
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
About us Contact us Product review car news thenatureplanet
More Form oMedia: AutoTimes. Bestcoffee. SL News. Jarebook. Coffee Hunters. Sundaily. Modezone. NNB. Coffee. Game News. FrontStreet. GGAMEN
© 2024 shulou.com SLNews company. All rights reserved.