How to play vemio video on Android app using iframe?

432 Views Asked by At

I am using video networking library - https://github.com/vimeo/vimeo-networking-java But unable to play video in my android app. I don't know HTML iframe properly In the official link, it shows-

   Video video = ...; // obtain a video in a manner described in the Requests section
   String html = video.embed != null ? video.embed.html : null;
   if(html != null) {
     // html is in the form "<iframe .... ></iframe>"
     // display the html however you wish
    }

What code I need to place here. I am unable to understand. If you know?

1

There are 1 best solutions below

0
On

You don´t need any library to use Vimeo player in Iframe. Here is an example:

vimeoPlayer.java file:

public class vimeoPlayer extends AppCompatActivity {
private WebView myWebView;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_vimeo_player);
    myWebView=(WebView)findViewById(R.id.webview);
    WebSettings webSettings = myWebView.getSettings();
    webSettings.setJavaScriptEnabled(true);
    myWebView.loadDataWithBaseURL("https://vimeo.com/47412289","<iframe src=\"https://player.vimeo.com/video/47412289\" width=\"100%\" height=\"100%\" frameborder=\"0\"></iframe>","text/html", "utf-8",null);


}
}

activity_vimeo_player.xml

     <?xml version="1.0" encoding="utf-8"?>
     <androidx.constraintlayout.widget.ConstraintLayout 
     xmlns:android="http://schemas.android.com/apk/res/android"
     xmlns:app="http://schemas.android.com/apk/res-auto"
     xmlns:tools="http://schemas.android.com/tools"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     tools:context=".vimeoPlayer">

<WebView
    android:id="@+id/webview"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />


   </androidx.constraintlayout.widget.ConstraintLayout>

AndroidManifest.xml file

...
<uses-permission android:name="android.permission.INTERNET" />
...