53 lines
1.6 KiB
Java
53 lines
1.6 KiB
Java
package de.sebse.fuplanner.fragments;
|
|
|
|
import android.content.Context;
|
|
import android.net.Uri;
|
|
import android.os.Bundle;
|
|
import android.support.annotation.NonNull;
|
|
import android.support.v4.app.Fragment;
|
|
import android.view.LayoutInflater;
|
|
import android.view.View;
|
|
import android.view.ViewGroup;
|
|
|
|
import de.sebse.fuplanner.R;
|
|
|
|
/**
|
|
* A simple {@link Fragment} subclass.
|
|
* Activities that contain this fragment must implement the
|
|
* {@link StartupFragment.OnStartupFragmentInteractionListener} interface
|
|
* to handle interaction events.
|
|
* Use the {@link StartupFragment#newInstance} factory method to
|
|
* create an instance of this fragment.
|
|
*/
|
|
public class StartupFragment extends Fragment {
|
|
|
|
public StartupFragment() {
|
|
// Required empty public constructor
|
|
}
|
|
|
|
/**
|
|
* Use this factory method to create a new instance of
|
|
* this fragment using the provided parameters.
|
|
*
|
|
* @return A new instance of fragment StartupFragment.
|
|
*/
|
|
public static StartupFragment newInstance() {
|
|
StartupFragment fragment = new StartupFragment();
|
|
Bundle args = new Bundle();
|
|
fragment.setArguments(args);
|
|
return fragment;
|
|
}
|
|
|
|
@Override
|
|
public void onCreate(Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
}
|
|
|
|
@Override
|
|
public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container,
|
|
Bundle savedInstanceState) {
|
|
// Inflate the layout for this fragment
|
|
return inflater.inflate(R.layout.fragment_startup, container, false);
|
|
}
|
|
}
|