gpt4 book ai didi

java - 如何使 OnNewIntent 在选项卡内工作

转载 作者:行者123 更新时间:2023-12-02 11:24:53 30 4
gpt4 key购买 nike

我正在开发一个有 3 个选项卡的项目。第一个选项卡用于将信息写入 NFC 标签,其他 2 个选项卡用于从 NFC 标签读取信息。但是,我遇到了 OnNewIntent() 方法的问题。正如我从在线阅读中正确理解的那样,这种方法仅在 Activity 中使用,而不在 fragment 中使用。我看过类似的问题和答案,但我不完全明白在我的情况下需要做什么才能避免这个问题。

这是我在第一个选项卡中向 NFC 标签写入一些数据的代码:

public class Home extends Fragment {

NfcAdapter nfcAdapter;
Button writebtn;
Tag tag;
EditText txtName, txtCountry, txtID;

public void onViewCreated(View view, Bundle savedInstanceState) {
super.onViewCreated(view,savedInstanceState);
nfcAdapter = NfcAdapter.getDefaultAdapter(getContext());

txtName = (EditText)view.findViewById(R.id.personName);
txtCountry= (EditText)view.findViewById(R.id.personCountry);
txtID= (EditText)view.findViewById(R.id.personID);
writebtn=(Button)view.findViewById(R.id.nfcWriteBtn);

}
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, Bundle savedInstanceState) {
View v= inflater.inflate(R.layout.home, container,false);
return v;
}

@Override
public void onResume() {
super.onResume();
if(nfcAdapter !=null){
enableForegroundDispatchSystem();
}
}

@Override
public void onPause() {
super.onPause();
disableForegroundDispatchSystem();
}

protected void onNewIntent(final Intent intent) {
// super.onNewIntent(intent);
getActivity().getIntent();

if (intent.hasExtra(NfcAdapter.EXTRA_TAG)) {
Toast.makeText(getContext(), "NFC tag discovered!", Toast.LENGTH_SHORT).show();

tag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);
writebtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {

NdefMessage ndefMessage = createNdefMessage(txtName.getText().toString(), txtCountry.getText().toString(),txtID.getText().toString());

writeNdefMessage(tag, ndefMessage);
}
});
}

}

最佳答案

onNewIntent(Intent Intent) 属于 Activity 你不能将它放在 fragment 中。您可以做的就是每当在 Activity 中调用 onNewIntent(Intent Intent) 时将数据传递到您的 fragment 。要实现此目的,您需要重写 Activity 中的 onNewIntent() 并通知 fragment 有关 Intent 的信息。不要使用 getIntent() 使用参数中的 intent

 @Override
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
// Notify fragment about the new intent
}

您的 Fragments 方法应该如下所示。

 protected void onNewIntent( Intent intent) {
if (intent.hasExtra(NfcAdapter.EXTRA_TAG)) {
Toast.makeText(getContext(), "NFC tag discovered!", Toast.LENGTH_SHORT).show();
tag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);
writebtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
NdefMessage ndefMessage = createNdefMessage(txtName.getText().toString(), txtCountry.getText().toString(),txtID.getText().toString());
writeNdefMessage(tag, ndefMessage);
}
});
}

关于java - 如何使 OnNewIntent 在选项卡内工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49691830/

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