虽然花了大量时间谷歌搜索我的问题的相对简单的解决方案,我发现这是二维滚动的解决方案。我有一个嵌套在scrollview中的horizontalscrollview。我在几个方面摆弄了这个并且没有成功地制作任何功能。有没有人对如何制作这样的概念有任何想法?
Scrollview scrollY = (ScrollView)findViewById(R.id.scrollY);
LinearLayout scrollYChild = (LinearLayout)findViewById(R.id.scrollYChild);
@Override
public boolean dispatchTouchEvent(MotionEvent event) {
scrollYChild.dispatchTouchEvent(event);
scrollY.onTouchEvent(event);
return true;
}
我也发现了这个:http://blog.gorges.us/2010/06/android-two-dimensional-scrollview/但是我完全不明白如何正确地实现这么长的代码。
对我而言,二维滚动是webview中固有但在其他地方不存在的任何事情都没有多大意义......感谢任何和所有帮助。
编辑:当放大图库中的图像时,这是如何工作的。当然必须有一种方法来实现相同的功能。
答案 0 :(得分:3)
我不确定您发布的博客,这是我的解决方案:
/**
* This class disables Y-motion on touch event.
* It should only be used as parent class of HorizontalScrollView
*/
public class ParentScrollView extends ScrollView {
private GestureDetector mGestureDetector;
View.OnTouchListener mGestureListener;
@SuppressWarnings("deprecation")
public ParentScrollView(Context context, AttributeSet attrs) {
super(context, attrs);
mGestureDetector = new GestureDetector(new YScrollDetector());
setFadingEdgeLength(0);
}
@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
if( mGestureDetector.onTouchEvent(ev)&super.onInterceptTouchEvent(ev)){
return true;
}else{
return false;
}
}
// Return false if we're scrolling in the x direction
class YScrollDetector extends SimpleOnGestureListener {
@Override
public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) {
if(Math.abs(distanceY) > Math.abs(distanceX)) {
return true;
}
return false;
}
}
}
XML:
<com.example.Views.ParentScrollView
android:layout_width="match_parent"
android:layout_height="match_parent" >
<HorizontalScrollView
android:id="@+id/tlDBtable"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</HorizontalScrollView>
</com.example.Views.ParentScrollView>
基本上,仅滚动veritcal的父滚动视图将被禁用,因为您将使用新的自定义类。然后在滚动视图中放置HScrollview。即使父级滚动视图不垂直于使其成为2D滚动效果的horiszontalscroll视图,它也会通过触摸。