Android Open Source - VideoPlayer Video






From Project

Back to project page VideoPlayer.

License

The source code is released under:

MIT License

If you think the Android project VideoPlayer 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 net.ralphpina.famigo.videoplayer.app;
/*w  w  w .  j  a va 2 s .  c o  m*/
/**
 * Created by ralphpina on 4/18/14.
 */
public class Video {

    private String mTitle; //title
    private String mThumbNailUrl; // thumbnail url
    private String mContentData; // url to data
    private String mLikeCount; // video likes
    private int mViewCount; // times watched

    public Video(String title, String thumbNailUrl, String contentData, String likeCount, int viewCount) {
        mTitle = title;
        mThumbNailUrl = thumbNailUrl;
        mContentData = contentData;
        mLikeCount = likeCount;
        mViewCount = viewCount;
    }

    public String getTitle() {
        return mTitle;
    }

    public String getThumbNailUrl() {
        return mThumbNailUrl;
    }

    public String getContentData() {
        return mContentData;
    }

    public String getLikeCount() {
        return mLikeCount;
    }

    public int getViewCount() {
        return mViewCount;
    }

    @Override
    public String toString() {
        return mTitle;
    }
}




Java Source Code List

net.ralphpina.famigo.videoplayer.app.MainActivity.java
net.ralphpina.famigo.videoplayer.app.VideoListAdapter.java
net.ralphpina.famigo.videoplayer.app.VideoListFragmentFragment.java
net.ralphpina.famigo.videoplayer.app.VideoPlayingActivity.java
net.ralphpina.famigo.videoplayer.app.VideoService.java
net.ralphpina.famigo.videoplayer.app.Video.java
net.ralphpina.famigo.videoplayer.app.VideosManager.java
net.ralphpina.famigo.videoplayer.app.util.SystemUiHiderBase.java
net.ralphpina.famigo.videoplayer.app.util.SystemUiHiderHoneycomb.java
net.ralphpina.famigo.videoplayer.app.util.SystemUiHider.java