AndroidKotlin:NFC标签不被应用阅读

kt06eoxx  于 2024-01-04  发布在  Android
关注(0)|答案(1)|浏览(184)

我最近创建了一个NFC标签阅读器应用程序,但不幸的是,我的应用程序似乎无法识别它,但它被系统(移动的)软件检测到,并重定向到内置NFC扫描仪。我已经仔细检查了我的代码和连接,似乎看起来正确,因为我遵循official documentation,但我仍然面临这个问题。

**问题:**应用程序在onNewIntent()上未检测到NFC回调,它重定向到内置功能。与其他(下载的)应用程序配合良好。

  • AndroidManifest.xml*:**
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools">
  4. <uses-permission android:name="android.permission.NFC" />
  5. <uses-feature
  6. android:name="android.hardware.nfc"
  7. android:required="true" />
  8. <application
  9. android:allowBackup="true"
  10. android:dataExtractionRules="@xml/data_extraction_rules"
  11. android:fullBackupContent="@xml/backup_rules"
  12. android:icon="@mipmap/ic_launcher"
  13. android:label="@string/app_name"
  14. android:roundIcon="@mipmap/ic_launcher_round"
  15. android:supportsRtl="true"
  16. android:theme="@style/Theme.NFCApp"
  17. tools:targetApi="31">
  18. <activity
  19. android:name=".AnotherActivity"
  20. android:exported="false" />
  21. <activity
  22. android:name=".MainActivity"
  23. android:exported="true"
  24. android:launchMode="singleTop">
  25. <intent-filter>
  26. <action android:name="android.intent.action.MAIN" />
  27. <category android:name="android.intent.category.LAUNCHER" />
  28. </intent-filter>
  29. <intent-filter>
  30. <action android:name="android.nfc.action.NDEF_DISCOVERED" />
  31. <data android:mimeType="text/plain" />
  32. <category android:name="android.intent.category.DEFAULT" />
  33. </intent-filter>
  34. <meta-data android:name="android.nfc.action.TECH_DISCOVERED"
  35. android:resource="@xml/nfc_tech_filter" />
  36. </activity>
  37. </application>
  38. </manifest>

字符串

  • nfc_tech_filter.xml* 位于<project-root>/res/xml
  1. <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
  2. <tech-list>
  3. <tech>android.nfc.tech.Ndef</tech>
  4. <tech>android.nfc.tech.NfcA</tech>
  5. <tech>android.nfc.tech.NfcB</tech>
  6. </tech-list>
  7. </resources>

  • 主活动 *:
  1. class MainActivity : AppCompatActivity() {
  2. private lateinit var binding: ActivityMainBinding
  3. private var nfcAdapter: NfcAdapter? = null
  4. override fun onCreate(savedInstanceState: Bundle?) {
  5. super.onCreate(savedInstanceState)
  6. binding = ActivityMainBinding.inflate(layoutInflater)
  7. setContentView(binding.root)
  8. nfcAdapter = NfcAdapter.getDefaultAdapter(this)
  9. }
  10. override fun onNewIntent(intent: Intent?) {
  11. super.onNewIntent(intent)
  12. Log.d("CHKI", "NEW NFC DETECTED")
  13. if (intent?.action == NfcAdapter.ACTION_NDEF_DISCOVERED) {
  14. Log.d("CHKI", "ACTION_NDEF_DISCOVERED")
  15. }
  16. if (intent?.action == NfcAdapter.ACTION_TECH_DISCOVERED) {
  17. Log.d("CHKI", "ACTION_TECH_DISCOVERED")
  18. }
  19. }
  20. }


有没有其他人遇到过类似的问题,如果有,你采取了什么步骤来解决它?任何见解或建议将不胜感激!提前感谢。

vnjpjtjt

vnjpjtjt1#

刚刚添加了onResumeonPause,现在NFC可以很好地使用我现有的代码。这些方法用于启用和禁用前台调度系统。
代码如下:

  1. class MainActivity : AppCompatActivity() {
  2. private lateinit var binding: ActivityMainBinding
  3. private var nfcAdapter: NfcAdapter? = null
  4. override fun onCreate(savedInstanceState: Bundle?) {
  5. super.onCreate(savedInstanceState)
  6. // existing code
  7. }
  8. override fun onNewIntent(intent: Intent?) {
  9. super.onNewIntent(intent)
  10. // existing code
  11. }
  12. // Added new
  13. override fun onResume() {
  14. super.onResume()
  15. val pendingIntent = PendingIntent.getActivity(
  16. this,
  17. 0,
  18. Intent(this, javaClass).addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP),
  19. PendingIntent.FLAG_MUTABLE
  20. )
  21. nfcAdapter?.enableForegroundDispatch(this, pendingIntent, null, null)
  22. }
  23. // Added new
  24. override fun onPause() {
  25. super.onPause()
  26. nfcAdapter?.disableForegroundDispatch(this)
  27. }
  28. }

字符串

展开查看全部

相关问题