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?
Asked
Active
Viewed 444 times
0
-
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