0

I have layout with a ScrollView and another one inside it , is there any way to disable the parent without effecting on the child's scrolling?

MatthewD
  • 6,719
  • 5
  • 22
  • 41
Samad
  • 1,776
  • 2
  • 20
  • 35
  • Try this `scrollView.setOnTouchListener(new View.OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { // TODO Auto-generated method stub return isBlockedScrollView; } });` – BNK Oct 05 '15 at 01:55
  • @BNK the paret disabled but the child disabled also – Samad Oct 05 '15 at 02:16
  • Read this link http://stackoverflow.com/questions/5763304/disable-scrollview-programmatically – BNK Oct 05 '15 at 02:21

0 Answers0