我正在尝试从我的设备中使用NFC硬件.但是,问题是当我注册Activity以接收Intent时:
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, new Intent(this, getClass()).addFlags(Intent.FLAG_ACTIVITY_SINGLE_top), 0);
我在Activity中收到结果而不是片段.有没有办法在Fragment中处理这个结果?
提前致谢!
解决方法:
onNewIntent属于Activity,所以你不能在你的片段中拥有它.你可以做的是当数据到达onNewIntent时将数据传递给你的片段,前提是你有对片段的引用.
Fragment fragment; @OverrIDeprotected 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)方法?全部内容,希望文章能够帮你解决android – 如何在Fragment中使用onNewIntent(Intent intent)方法?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)