gpt4 book ai didi

android - 如何在 fragment 中使用 onNewIntent(Intent intent) 方法?

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:37:14 28 4
gpt4 key购买 nike

我正在尝试通过我的设备使用 NFC 硬件。但是,问题是当我注册 Activity 以接收 Intent 时:

PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, new Intent(this, getClass()).addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP), 0);

我在 Activity 而不是 Fragment 中收到结果。有没有办法在 Fragment 中处理这个结果?

提前致谢!

最佳答案

onNewIntent 属于 Activity,因此您不能将其包含在 fragment 中。你可以做的是在数据到达 onNewIntent 时将数据传递给你的 fragment ,前提是你有 fragment 的引用。

Fragment fragment;  
@Override
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);

// Check if the fragment is an instance of the right fragment
if (fragment instanceof MyNFCFragment) {
MyNFCFragment my = (MyNFCFragment) fragment;
// Pass intent or its data to the fragment's method
my.processNFC(intent.getStringExtra());
}

}

关于android - 如何在 fragment 中使用 onNewIntent(Intent intent) 方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30043326/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com