Reputation: 283
Is it possible to use the VideoVideo with the ListView as an item. Has anyone done this? Are there any issues I should be aware of?
Upvotes: 0
Views: 783
Reputation: 11
I've made a test.Videoview can be inserted into a listview, it can work properly.But when i drag the list, the area which the videoview once occupied will get in front of the screen. Andt the screen will get very dirty.
Upvotes: 1
Reputation: 1006944
Is it possible to use the VideoVideo with the ListView as an item.
I doubt it. SurfaceView
-- which VideoView
uses -- does not behave much like a normal widget. IIRC, you cannot have two SurfaceView
widgets active at the same time, regardless of what contains them.
Upvotes: 0