标签:android style blog color io 使用 ar div sp
Android中的ScrollView会把OnTouch move事件捕获,并且不传递到子控件
网上的建议是使用
scrollview.requestDisallowInterceptTouchEvent(true);
但是我使用之后确实没有任何反应
于是就这样写了
scrollView.setOnTouchListener(new View.OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { linearLayout.dispatchTouchEvent(event); return false; } });
这样写就可以把scrollview传递到子控件linearlayout中,但是问题是,linearlayout的子控件
也是没有获取到MOVE 事件的,目前不知道怎么解决
标签:android style blog color io 使用 ar div sp
原文地址:http://www.cnblogs.com/Jabba93/p/3991314.html