简体   繁体   中英

How to put scrollView inside another Scrollview

what I have is this:

<LinearLayout
<ScrollView
<ImageView
<ScrollView
</LinearLayout>

It works fine, now I need to do a kind of parent scroll to the hole layout, and when i do this:

<LinearLayout
<ScrollView

   <LinearLayout
   <ScrollView
   <ImageView
   <ScrollView
   </LinearLayout>

</ScrollView
</LinearLayout>

I get the scroll in the entire layout right, but the inside ones do not work, any help would be grate, thanks

The thing is that the scroll views inside were for recyclerview adapters. turns out that widget has its own scroll.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM