mirror of
https://github.com/LucasVbr/OutilCuisson.git
synced 2026-05-13 17:11:53 +00:00
36 lines
839 B
Java
36 lines
839 B
Java
/*
|
|
* AfficherFragment.java, 21/02/2022
|
|
* IUT Rodez 2022-2022, INFO2
|
|
* pas de copyright, aucun droits
|
|
*/
|
|
|
|
package com.example.outilcuisson;
|
|
|
|
import android.os.Bundle;
|
|
import android.view.LayoutInflater;
|
|
import android.view.View;
|
|
import android.view.ViewGroup;
|
|
|
|
import androidx.fragment.app.Fragment;
|
|
|
|
public class AfficherFragment extends Fragment {
|
|
|
|
public AfficherFragment() {}
|
|
|
|
public static AfficherFragment newInstance() {
|
|
return new AfficherFragment();
|
|
}
|
|
|
|
@Override
|
|
public void onCreate(Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
}
|
|
|
|
@Override
|
|
public View onCreateView(LayoutInflater inflater, ViewGroup container,
|
|
Bundle savedInstanceState) {
|
|
return inflater.inflate(R.layout.afficher_fragment, container, false);
|
|
}
|
|
|
|
}
|