Android Open Source - playground-android-video No Video Fragment






From Project

Back to project page playground-android-video.

License

The source code is released under:

This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a co...

If you think the Android project playground-android-video 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 v.app.Fragments;
//  w  ww  .j  av a 2 s .c  om
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

import v.app.R;

/**
 * Created by vasanth on 25/03/14.
 */
public class NoVideoFragment extends Fragment {


    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        View rootView = inflater.inflate(R.layout.fragment_no_video, container, false);
        return rootView;
    }
}




Java Source Code List

v.app.Config.java
v.app.MainActivity.java
v.app.Fragments.NoVideoFragment.java
v.app.Fragments.RecorderFragment.java
v.app.Fragments.VideoFragment.java
v.app.Helpers.HTTP.java
v.app.Interfaces.RemoteInterface.java
v.app.Services.UploadService.java