Play Vimeo Video for Android

How to play vimeo video in Android app. Is there any way to play vimeo video in web review or video in android. Any source code for vimeo will be useful to me. Please, help.

+3
source share
1 answer

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

Source: https://habr.com/ru/post/1400424/


All Articles