Tesis 1.0.0
Loading...
Searching...
No Matches
EulaFragment.java
Go to the documentation of this file.
1package com.example.food_front;
2
3import android.os.Bundle;
4import android.view.LayoutInflater;
5import android.view.View;
6import android.view.ViewGroup;
7import androidx.annotation.NonNull;
8import androidx.annotation.Nullable;
9import androidx.fragment.app.Fragment;
10
11public class EulaFragment extends Fragment {
12 @Nullable
13 @Override
14 public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
15 View view = inflater.inflate(R.layout.fragment_eula, container, false);
16 View btnBack = view.findViewById(R.id.btn_back);
17 if (btnBack != null) {
18 btnBack.setOnClickListener(v -> requireActivity().onBackPressed());
19 }
20 return view;
21 }
22}
View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState)