Android Open Source - immersive-videoplayer-android Video






From Project

Back to project page immersive-videoplayer-android.

License

The source code is released under:

MIT License

If you think the Android project immersive-videoplayer-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.stickmanventures.android.example.immersive_videoplayer.entities;
/* w  ww  . j  a  va 2  s.  co  m*/
import java.io.Serializable;

public class Video implements Serializable {
  private static final long serialVersionUID = 1L;
  
  /** The title of the video. */
  private String title = "Untitled";
  
  /** The author of the video. */
  private String author = "Unknown";
  
  /** The description of the video. */
  private String description = "No Description";
  
  /** The video's streaming url. */
  private String url;
  
  /**
   * Create a video object with a streaming url.
   * @param url A url to stream from.
   */
  public Video(String url) {
    this.url = url;
  }

  public String getTitle() {
    return title;
  }

  public void setTitle(String title) {
    this.title = title;
  }

  public String getAuthor() {
    return author;
  }

  public void setAuthor(String author) {
    this.author = author;
  }

  public String getDescription() {
    return description;
  }

  public void setDescription(String description) {
    this.description = description;
  }

  public String getUrl() {
    return url;
  }
}




Java Source Code List

com.stickmanventures.android.example.immersive_videoplayer.ImmersiveVideoplayer.java
com.stickmanventures.android.example.immersive_videoplayer.adapters.HomeArrayAdapter.java
com.stickmanventures.android.example.immersive_videoplayer.entities.Video.java
com.stickmanventures.android.example.immersive_videoplayer.ui.activities.BaseActivity.java
com.stickmanventures.android.example.immersive_videoplayer.ui.activities.HomeActivity.java
com.stickmanventures.android.example.immersive_videoplayer.ui.activities.VideoPlayerActivity.java
com.stickmanventures.android.example.immersive_videoplayer.ui.fragments.VideoDescriptionFragment.java
com.stickmanventures.android.example.immersive_videoplayer.ui.fragments.VideoPlayerFragment.java