Blame view

app/src/main/java/net/plil/clubinfo/etunicorn/app/Crediter.java 3.29 KB
dd839264   badetitou   All done
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
  package net.plil.clubinfo.etunicorn.app;
  
  import android.content.Context;
  import android.content.Intent;
  import android.net.Uri;
  import android.nfc.NdefMessage;
  import android.nfc.NfcAdapter;
  import android.nfc.NfcEvent;
  import android.os.Bundle;
  import android.os.Parcelable;
  import android.support.design.widget.Snackbar;
  import android.support.v4.app.Fragment;
  import android.view.LayoutInflater;
  import android.view.View;
  import android.view.ViewGroup;
  import android.widget.Toast;
  
  import net.plil.clubinfo.etunicorn.R;
  
  /**
   * A simple {@link Fragment} subclass.
   * Activities that contain this fragment must implement the
   * {@link Crediter.OnFragmentInteractionListener} interface
   * to handle interaction events.
   * Use the {@link Crediter#newInstance} factory method to
   * create an instance of this fragment.
   */
  public class Crediter extends Fragment {
      NfcAdapter mNfcAdapter;
  
  
  
      private OnFragmentInteractionListener mListener;
  
      public Crediter() {
          // 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 Crediter.
       */
      public static Crediter newInstance(String param1, String param2) {
          Crediter fragment = new Crediter();
          return fragment;
      }
  
      @Override
      public void onCreate(Bundle savedInstanceState) {
          super.onCreate(savedInstanceState);
          mNfcAdapter = NfcAdapter.getDefaultAdapter(getContext());
          if (mNfcAdapter == null) {
              Toast.makeText(getActivity(), "NFC is not available", Toast.LENGTH_LONG).show();
              return;
          }
          if (!mNfcAdapter.isEnabled()){
              Toast.makeText(getActivity(), "NFC is not enabled, please turn it on", Toast.LENGTH_LONG).show();
          }
  
      }
  
      @Override
      public View onCreateView(LayoutInflater inflater, ViewGroup container,
                               Bundle savedInstanceState) {
          // Inflate the layout for this fragment
          return inflater.inflate(R.layout.fragment_crediter, container, false);
      }
  
  
      @Override
      public void onAttach(Context context) {
          super.onAttach(context);
          if (context instanceof OnFragmentInteractionListener) {
              mListener = (OnFragmentInteractionListener) context;
          } else {
              throw new RuntimeException(context.toString()
                      + " must implement OnFragmentInteractionListener");
          }
      }
  
      @Override
      public void onDetach() {
          super.onDetach();
          mListener = null;
      }
  
      public void processNFC(){
          Toast.makeText(getContext(), "HELLO NFC", Toast.LENGTH_LONG).show();
      }
  
  
      /**
       * This interface must be implemented by activities that contain this
       * fragment to allow an interaction in this fragment to be communicated
       * to the activity and potentially other fragments contained in that
       * activity.
       * <p>
       * See the Android Training lesson <a href=
       * "http://developer.android.com/training/basics/fragments/communicating.html"
       * >Communicating with Other Fragments</a> for more information.
       */
      public interface OnFragmentInteractionListener {
          // TODO: Update argument type and name
          void onFragmentInteraction(Uri uri);
      }
  }