前提・実現したいこと
Android studioでフェリカのブロックデータの取得をするプログラムを作っていて、
動作させてみようとしましたがうまくいきません。
発生している問題・エラーメッセージ
問題が二つあって、
一つ目はプログラムの3行目から7行目の「private ~」で以下のエラーメッセージが出ています。
「class or interface expexted」
二つ目は「@Override」に赤線で
「Annotation are not here」
該当のソースコード
java
1package com.example.ta7; 2 3private IntentFilter[] intentFiltersArray; 4private String[][] techListsArray; 5private NfcAdapter mAdapter; 6private PendingIntent pendingIntent; 7private NfcReader nfcReader = new NfcReader(); 8 9@Override 10protected void onCreate(Bundle savedInstanceState) { 11 super.onCreate(savedInstanceState); 12 setContentView(R.layout.activity_nfcreader); 13 14 pendingIntent = PendingIntent.getActivity( 15 this, 0, new Intent(this, getClass()).addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP), 0); 16 17 IntentFilter ndef = new IntentFilter(NfcAdapter.ACTION_NDEF_DISCOVERED); 18 19 try { 20 ndef.addDataType("text/plain"); 21 } 22 catch (IntentFilter.MalformedMimeTypeException e) { 23 throw new RuntimeException("fail", e); 24 } 25 intentFiltersArray = new IntentFilter[] {ndef}; 26 27 // FelicaはNFC-TypeFなのでNfcFのみ指定でOK 28 techListsArray = new String[][] { 29 new String[] { NfcF.getName() }; 30 }; 31 32 // NfcAdapterを取得 33 mAdapter = NfcAdapter.getDefaultAdapter(getApplicationContext()); 34 } 35 36@Override 37protected void onResume() { 38 super.onResume(); 39 // NFCの読み込みを有効化 40 mAdapter.enableForegroundDispatch(this, pendingIntent, intentFiltersArray, techListsArray); 41 } 42 43@Override 44protected void onNewIntent(Intent intent) { 45// IntentにTagの基本データが入ってくるので取得。 46 Tag tag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG); 47 if (tag == null) { 48 return; 49 } 50 51 // ここで取得したTagを使ってデータの読み書きを行う。 52 } 53 54@Override 55protected void onPause() { 56 super.onPause(); 57 mAdapter.disableForegroundDispatch(this); 58 } 59
試したこと
色々調べてみましたが解決できませんでした。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/01 11:52
2020/03/01 11:55
2020/03/04 09:03