Android Question ScrollView question

Marko Druskovic

Member
Licensed User
Longtime User
Dear friends!

I have a problem when I put CustomeListView on ScrollView and populate it with items.
I would like to scroll only CustomeList when my finger is on it and at that time disable ScrollView.

P.S. Sorry for my bad english - I put video in attach.

Thnx!

EDIT:
Found solution::)

Sub setNestedScrollingEnabled(v As View, Enabled As Boolean)
Dim jo = v As JavaObject
jo.RunMethod("setNestedScrollingEnabled", Array As Object (Enabled))
End Sub

(but this is not working SDK <21)
 

Attachments

  • ezgif-2-9c8fa62056.gif
    ezgif-2-9c8fa62056.gif
    361.6 KB · Views: 219
Last edited:
Top