How to play Vimeo Video in Android app

為{幸葍}努か 提交于 2019-11-29 22:31:34

问题


Is there any way to play Vimeo Video in WebView or VideoView in Android. Any source code for playing Vimeo will be helpful for me. Please help.


回答1:


add webview to your layout

      android:id="@+id/webView1"
      android:layout_width="400dp"
      android:layout_height="400dp" />

than add

@Override
    protected void onCreate(Bundle savedInstanceState)
    {

   webView1.loadData("<iframe src=\"http://player.vimeo.com/video/"+VIDEO_ID+"\" width=\"180px\" height=\"180px\" frameborder=\"0\" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>", "text/html", "utf-8");
}


来源:https://stackoverflow.com/questions/15403848/how-to-play-vimeo-video-in-android-app

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!