标签: android
我想播放一个固定高度和宽度的视频,而不是整个屏幕。 谁能告诉我如何在Android上的表面视图中播放视频?请提供示例代码
由于
答案 0 :(得分:0)
也许你想要VideoView。我找到了一些示例代码here。
答案 1 :(得分:0)
请尝试以下操作:
main :: Effect Unit main = window >>= document >>= toDocument >>> toNonElementParentNode >>> getElementById "test-input" >>= case _ of Nothing → pure unit Just elem → setAttribute "value" "new-value" elem