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");
}