org.blanco.lacuenta.misc.EmptyFragment.java Source code

Java tutorial

Introduction

Here is the source code for org.blanco.lacuenta.misc.EmptyFragment.java

Source

/***
 *  La-Cuenta for Android, a Small application that allows users to split
 *  the restaurant check between the people that assists.
 *  Copyright (C) 2011  Alexandro Blanco <ti3r.bubblenet@gmail.com>
 *
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
package org.blanco.lacuenta.misc;

import android.graphics.Color;
import android.support.v4.app.Fragment;
import android.view.SurfaceView;
import android.view.View;

/**
 * Fragment that returns an empty view, Just for testing purposes
 * 
 * @author Alexandro Blanco <ti3r.bubblenet@gmail.com>
 * @version 1.0 08/22/2011
 * 
 */
public class EmptyFragment extends Fragment {

    @Override
    public View getView() {
        SurfaceView v = new SurfaceView(getActivity());
        v.setBackgroundColor(Color.BLUE);
        return v;
    }

}