add webview to 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"); }
source share