Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 16, 2019 16:56
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save parzibyte/0dc89d89c29b96985a0bcf3fa5825027 to your computer and use it in GitHub Desktop.
package mx.com.textitez.textitezapp;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
/**
* A simple {@link Fragment} subclass.
*/
public class FragmentFormularioDeAvio extends Fragment {
public FragmentFormularioDeAvio() {
// Required empty public constructor
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_formulario_de_avio, container, false);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment