在片段中接收 NFC 的应用程序创建托管活动的新实例
Posted
技术标签:
【中文标题】在片段中接收 NFC 的应用程序创建托管活动的新实例【英文标题】:Application receiving NFC in fragment create new instance of hosted activity 【发布时间】:2021-02-09 19:23:36 【问题描述】:向 *** 中的人们问好
我得到了一个包含 3 个片段的活动(带有 navController) 我需要读取其中一个托管片段(GameSessionFragment)中的 NFC 标签 ID(EXTRA_ID)
我的问题是,每次我扫描新的 NFC 标签时,托管片段(主机)的活动再次“创建”,因此它让我脱离了呈现的片段并导航到“主机”活动,我试图避免重新创建主机活动有什么想法可以实现吗?
如果我不清楚,或者您认为我可能对我的问题有更好的解释,请写在上面, 另外,对不起我的英语..
这是我的代码:
清单:
<activity android:name=".Host" >
<intent-filter>
<action android:name="android.nfc.action.TAG_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
主机活动:
class Host : AppCompatActivity()
var fragment: Fragment? = null
private var mAdapter: NfcAdapter? = null
private var mPendingIntent: PendingIntent? = null
override fun onCreate(savedInstanceState: Bundle?)
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_host)
//for hide the actionBar (contains Fragment name) on top of the screen
val actionBar = supportActionBar
actionBar?.hide()
val navController = Navigation.findNavController(this, R.id.nav_host_fragment)
val navView = findViewById<BottomNavigationView>(R.id.nav_view)
navView?.setupWithNavController(navController)
NavigationUI.setupWithNavController(navView, navController)
//tries to stop poping the activity each time NFC Tag scanned
mAdapter = NfcAdapter.getDefaultAdapter(this)
mPendingIntent = PendingIntent.getActivity(
this, 0,
Intent(this, javaClass).addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP), 0
)
//toGameSession(whatToDO)
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?)
super.onActivityResult(requestCode, resultCode, data)
for (fragment in supportFragmentManager.fragments)
fragment.onActivityResult(requestCode, resultCode, data)
override fun onNewIntent(intent: Intent)
super.onNewIntent(intent)
if (NfcAdapter.ACTION_NDEF_DISCOVERED == intent.action)
intent.getParcelableArrayExtra(NfcAdapter.EXTRA_ID)?.also rawMessages ->
val messages: List<NdefMessage> = rawMessages.map it as NdefMessage
// Process the messages array.
println(messages)
if (fragment is UserStatusFragment)
val my: UserStatusFragment = fragment as UserStatusFragment
// Pass intent or its data to the fragment's method
my.processNFC(intent.getStringExtra(messages.toString()))
这是我想要接收和使用 NFC Extra_ID 的片段
游戏会话片段
class GameSessionFragment : Fragment()
// TODO: Rename and change types of parameters
private var param1: String? = null
private var param2: String? = null
lateinit var nfcTagId : String
private var mNfcAdapter: NfcAdapter? = null
private var mPendingIntent: PendingIntent? = null
private var mNdefPushMessage: NdefMessage? = null
var mAuth: FirebaseAuth? = null
lateinit var firebaseUser: FirebaseUser
private lateinit var databaseReference: DatabaseReference
override fun onCreate(savedInstanceState: Bundle?)
super.onCreate(savedInstanceState)
override fun onViewCreated(view: View, savedInstanceState: Bundle?)
super.onViewCreated(view, savedInstanceState)
getNfcTagID()
override fun onCreateView(
inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?
): View?
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_game_session, container, false)
private fun getNfcTagID()
val tagId : ByteArray? = activity?.intent?.getByteArrayExtra(NfcAdapter.EXTRA_ID)
if (tagId != null)
nfcTagId = tagId?.toHexString().toString()
tv_status.text = nfcTagId
fun ByteArray.toHexString() = joinToString("") "%02x".format(it)
fun questPartFinish(questPart: String, useruid: String)
// val rootRef = FirebaseDatabase.getInstance().reference
// val scoreRef = rootRef.child("Quests").child(useruid).child("$questPart+QuestItemScanned")
// scoreRef.runTransaction(object : Handler(), Transaction.Handler
// override fun doTransaction(mutableData: MutableData): Transaction.Result
// val ifFinish =
// mutableData.getValue(Boolean::class.java) ?: return Transaction.success(mutableData)
//
// mutableData.value = true
//// if (operation == "increaseScore")
//// mutableData.value = score + 50
//// else if (operation == "decreaseScore")
//// mutableData.value = score - 1
////
// return Transaction.success(mutableData)
//
//
// override fun onComplete(
// databaseError: DatabaseError?,
// b: Boolean,
// dataSnapshot: DataSnapshot?
// )
//
//
// override fun publish(p0: LogRecord?)
// TODO("Not yet implemented")
//
//
// override fun flush()
// TODO("Not yet implemented")
//
//
// override fun close()
// TODO("Not yet implemented")
//
// )
databaseReference.child("Quests").child(useruid)
.child("$questPart" + "QuestItemScanned").setValue(true)
我也在这里阅读Application receiving NFC always pops up new instance in front
但没有意识到实际需要做什么..
我读到了使用
mNfcAdapter!!.disableForegroundDispatch(getActivity())
但不确定那件事是否也会影响我..
更新:
感谢:安德鲁
非常感谢!! “enableReaderMode”看起来就像我需要的东西,我成功读取了标签 ID,但出现了两个问题,这两个问题一起发生,当我扫描 NFC 标签时,我可以在“println”中看到标签 ID,所以现在一切都很好,我成功地阅读了它,但是当我试图将它传递到片段中的 TextView 时,它只会在我刷新片段时发生(并且存在第二个问题)我看到那个 textview 秒但是然后,所有我的布局消失了(在我的主机活动中的所有片段中),
收到消息“只有创建视图层次结构的原始线程才能接触其视图”
我可以看到那些片段中的那个功能起作用,它只是消失的布局,希望你理解我并愿意。能够帮助我解决我的问题,如果您认为有更好的方式来描述问题,欢迎您说
感谢所有前来帮助的人!
工作乐趣 这就是你所需要的! '''
var mNfcAdapter: NfcAdapter? = 空
fun ByteArray.toHexString() = joinToString("") "%02x".format(it)
fun scanForNfcTagId(activity : Activity)
val options = Bundle()
// READER_PRESENCE_CHECK_DELAY is a work around for a Bug in some NFC implementations.
options.putInt(NfcAdapter.EXTRA_READER_PRESENCE_CHECK_DELAY, 1);
mNfcAdapter = NfcAdapter.getDefaultAdapter(activity)
val flags =
NfcAdapter.FLAG_READER_NO_PLATFORM_SOUNDS or
NfcAdapter.FLAG_READER_NFC_A or
NfcAdapter.FLAG_READER_NFC_B or
NfcAdapter.FLAG_READER_NFC_F or
NfcAdapter.FLAG_READER_NFC_V or
NfcAdapter.FLAG_READER_NFC_BARCODE
mNfcAdapter!!.enableReaderMode(activity, NfcAdapter.ReaderCallback tag ->
activity?.runOnUiThread
Log.d("WTF", "Tag discovered")
nfcTagId = (tag.id).toHexString()
Toast.makeText(
activity,
"tag detected",
Toast.LENGTH_SHORT
).show()
if (!actualQuest.firstQuestItemScanned)
hatCallBackAction(activity)
else if (!actualQuest.secondQuestItemScanned)
println("scan for pants")
pantsCallBackAction(activity)
else if (!actualQuest.thirdQuestItemScanned)
println("scan for shirt")
shirtCallBackAction(activity)
else
println("actualQuest" + actualQuest)
Toast.makeText(
activity,
"Quest is Finish! no more to search here",
Toast.LENGTH_LONG
).show()
, flags, null)
'''
【问题讨论】:
不要用新问题更新问题,如果答案停止您的代码创建托管活动的新实例,为了获得最佳可见性,请将其标记为已回答并打开一个显示当前代码版本的新问题,这将帮助其他用户,并意味着您更有可能得到答案。 【参考方案1】:使用更新更好的enableReaderMode
API 进行 NFC https://developer.android.com/reference/android/nfc/NfcAdapter#enableReaderMode(android.app.Activity,%20android.nfc.NfcAdapter.ReaderCallback,%20int,%20android.os.Bundle)
这会在您的应用程序中创建一个新线程以在发现标签时进行处理,避免使用Intents
获取 NFC 数据时发生的活动创建/重新创建/暂停/恢复。
然后在onTagDiscovered
回调方法中使用getId
https://developer.android.com/reference/android/nfc/Tag#getId()在Tag
对象上得到与Extra_ID
相同的数据
使用enableReaderMode
的示例是https://***.com/a/64441986/2373819
更新
正如答案中提到的,创建了一个新线程来处理 NFC 数据,并且只有 UI 线程可以更新 UI
同样在示例代码的 cmets 中
// This gets run in a new thread on Tag detection
// Thus cannot directly interact with the UI Thread
public void onTagDiscovered(Tag tag)
所以你需要使用一种方法来在线程之间传递数据。
简单的方法是使用runOnUIThread
https://developer.android.com/reference/android/app/Activity#runOnUiThread(java.lang.Runnable)
例如
runOnUiThread(new Runnable()
@Override
public void run()
// Set the value of the ID to the textview
textview.setText(iDtext);
);
【讨论】:
非常感谢,这似乎是我需要的,唯一的问题是当我在第一次按摩中写下更新时,我的布局消失了,现在正在寻找更好的解释 如果enableReaderMode
适合您,请将该问题标记为已回答/投赞成票,以便帮助其他用户找到类似问题的答案。以上是关于在片段中接收 NFC 的应用程序创建托管活动的新实例的主要内容,如果未能解决你的问题,请参考以下文章