Android在滚动视图中使用Scrollview

onu*_*kin 2 android

当我尝试在scrollview中使用scrollview或webview时,内部scrollview或webview无法滚动.我可以用轨迹球滚动,但我不能用触摸滚动.你对这个问题有什么看法吗?

onu*_*kin 9

我发现了一些东西,它对我有用.我想分享一下.在这里,我有一个scrollview和listview.listview里面的scrollview.Scrollview-> RelativeLayout-> Listview.那个听众属于Listview;

@Override
public boolean onTouch(View v, MotionEvent event) {
    if (event.getAction() == MotionEvent.ACTION_MOVE) {
        ScrollView().requestDisallowInterceptTouchEvent(true);
    }
    return false;
}
Run Code Online (Sandbox Code Playgroud)