在android问题中的scrollview内的Scrollview

前端之家收集整理的这篇文章主要介绍了在android问题中的scrollview内的Scrollview前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在scrollview中有一个scrollview. xml是这样的
<RelativeLayout ....
    <ScrollView.....
         <RelativeLayout ....
           <Button.....
           <Button ....
           <ScrollView
             <RelativeLayout ....
                 ..........
               </RelativeLayout>
             </ScrollView>
         </RelativeLayout>
     </ScrollView>
 </RelativeLayout>

在第二个滚动视图中不能平滑滚动.可以为此提供解决方案.我在互联网上尝试了很多解决方案,但没有工作.

解决方法

试试这个代码.它对我有用
parentScrollView.setOnTouchListener(new View.OnTouchListener() {

public boolean onTouch(View v,MotionEvent event)
{
    findViewById(R.id.childScrollView).getParent().requestDisallowInterceptTouchEvent(false);
return false;
}
});
childScrollView.setOnTouchListener(new View.OnTouchListener() {

public boolean onTouch(View v,MotionEvent event)
{

// Disallow the touch request for parent scroll on touch of
// child view
v.getParent().requestDisallowInterceptTouchEvent(true);
return false;
}
});`
原文链接:https://www.f2er.com/android/317420.html

猜你在找的Android相关文章