Android Open Source - immersive-videoplayer-android Video Description Fragment






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.ui.fragments;
/*from  w ww .  j a v a 2 s.  co  m*/
import com.stickmanventures.android.example.immersive_videoplayer.R;

import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

public class VideoDescriptionFragment extends Fragment {

  @Override
  public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout.fragment_videodescription, null);
    return view;
  }
  
}




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