android 片段中 onNewIntent() 的替换方法
replacement method for onNewIntent() in android fragment
我正在使用片段开发 NFC 应用程序。片段 class 不允许我使用 onNewIntent() 让应用程序扫描 NFC 标签。是否有替代功能或解决此问题。以下是我在片段 class 中使用的方法。我有两个片段负责不同的 NFC 功能。我需要能够单独使用片段生命周期来管理 NFC 功能,而不是将数据传递给片段 activity.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (getArguments() != null) {
mParam1 = getArguments().getString(ARG_PARAM1);
mParam2 = getArguments().getString(ARG_PARAM2);
}
_nfcAdapter = NfcAdapter.getDefaultAdapter(getActivity().getApplicationContext());
CheckNfcStatus();
NfcManager manager = (NfcManager) getActivity().getApplicationContext().getSystemService(Context.NFC_SERVICE);
NfcAdapter adapter = manager.getDefaultAdapter();
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View v = inflater.inflate(R.layout.fragment_heart_beat, container, false);
heartbearSearch = v.findViewById(R.id.heartBeat_Search);
heartbearSuccess = v.findViewById(R.id.heartBeat_Success);
heartbearSearch.setVisibility(View.VISIBLE);
heartbearSuccess.setVisibility(View.GONE);
return inflater.inflate(R.layout.fragment_heart_beat, container, false);
}
protected String TagUid;
@Override
public void onResume() {
//CheckNfcStatus();
AlertDialog alert = new AlertDialog.Builder(getActivity().getApplicationContext()).create();
super.onResume();
if (_nfcAdapter == null) { // checks if NFC is available on the device
alert.setMessage("NFC is not supported on this device.");
alert.setTitle("NFC Unavailable");
alert.show();
}
else {
IntentFilter tagDetected = new IntentFilter(NfcAdapter.ACTION_NDEF_DISCOVERED);
Intent intent = new Intent(getActivity().getApplicationContext(), getClass());
intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
final PendingIntent pendingIntent = PendingIntent.getActivity(getActivity().getApplicationContext(), 0, intent, 0);
IntentFilter[] filters = new IntentFilter[]{
new IntentFilter(NfcAdapter.ACTION_TECH_DISCOVERED),};
String[][] techList = new String[][]{
new String[]{NfcA.class.getName()},
new String[]{NfcB.class.getName()},
new String[]{NfcF.class.getName()},
new String[]{NfcV.class.getName()},
new String[]{NfcBarcode.class.getName()
},
// Filter for nfc tag discovery
};
_nfcAdapter.enableForegroundDispatch(getActivity(), pendingIntent, filters, techList);
}
}
@Override
public void onPause() {
super.onPause();
_nfcAdapter.disableForegroundDispatch(getActivity());
}
@Override
public void onNewIntent(Intent intent) {
super.onNewIntent(intent);
HBClass hb = new HBClass();
if (intent.getAction() == NfcAdapter.ACTION_TECH_DISCOVERED) {
Boolean res = true;
if (res) {
Tag tag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);
if (tag != null) {
if (hb.ReadTagSync(tag)) {
Context context = getContext();
mheartImage.startAnimation(mHeartAnimation);
CharSequence toastMessage = "Transmission successful";
int duration = Toast.LENGTH_SHORT;
Toast.makeText(context, toastMessage, duration).show();
textView.setText("Scan a new Tag");
}
}
}
}
}
public void SendRWBool(boolean someval) {
writeFlag = true;
//WriteNFC(tg);
}
private void CheckNfcStatus() {
Context context = getActivity().getApplicationContext();
int duration = Toast.LENGTH_LONG;
if (_nfcAdapter == null) {
CharSequence toastMessage = "No NFC available for the device!";
Toast.makeText(context, toastMessage, duration).show();
// NFC is not available for device
} else if (!_nfcAdapter.isEnabled()) {
CharSequence toastMessage = "Please Enable NFC!";
Toast.makeText(context, toastMessage, duration).show();
// NFC is available for device but not enabled
} else {
CharSequence toastMessage = "NFC enabled!";
Toast.makeText(context, toastMessage, duration).show();
// NFC is enabled
}
}
实际上,NFC 是一个 Activity 范围内的操作,确实需要在您的 Activity 中处理。
配置等某些部分可以在 Fragments 中完成,但与标签数据的实际交互应该在 Activity 中完成,无论您使用的是 Manifest、ForegroundDispatch 还是 enableReaderMode。
你需要改变你的想法才能得到你想要的。
将您的 NFC 处理代码放在 Activity 中,但要根据哪个片段处于活动状态来决定它的作用。
例如一些伪代码
handleNfc() {
if current fragment equal Fragment 1 {
// Process NFC the Fragment 1 way
} else {
// Process NFC the Fragment 2 way
}
}
有多种方法可以通过 Fragment 与 activity 通信来实现这一点,它是创建时的“当前”片段,并且 Activity 为 Fragment 传回已处理的数据使用。
一些选项是 Activity 到 Fragment 通信的接口。
或者我认为更好的方法是共享视图模型,因为 Fragment 很容易观察共享视图模型,以便在 Activity 完成处理 NFC 数据时得到通知。
我正在使用片段开发 NFC 应用程序。片段 class 不允许我使用 onNewIntent() 让应用程序扫描 NFC 标签。是否有替代功能或解决此问题。以下是我在片段 class 中使用的方法。我有两个片段负责不同的 NFC 功能。我需要能够单独使用片段生命周期来管理 NFC 功能,而不是将数据传递给片段 activity.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (getArguments() != null) {
mParam1 = getArguments().getString(ARG_PARAM1);
mParam2 = getArguments().getString(ARG_PARAM2);
}
_nfcAdapter = NfcAdapter.getDefaultAdapter(getActivity().getApplicationContext());
CheckNfcStatus();
NfcManager manager = (NfcManager) getActivity().getApplicationContext().getSystemService(Context.NFC_SERVICE);
NfcAdapter adapter = manager.getDefaultAdapter();
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View v = inflater.inflate(R.layout.fragment_heart_beat, container, false);
heartbearSearch = v.findViewById(R.id.heartBeat_Search);
heartbearSuccess = v.findViewById(R.id.heartBeat_Success);
heartbearSearch.setVisibility(View.VISIBLE);
heartbearSuccess.setVisibility(View.GONE);
return inflater.inflate(R.layout.fragment_heart_beat, container, false);
}
protected String TagUid;
@Override
public void onResume() {
//CheckNfcStatus();
AlertDialog alert = new AlertDialog.Builder(getActivity().getApplicationContext()).create();
super.onResume();
if (_nfcAdapter == null) { // checks if NFC is available on the device
alert.setMessage("NFC is not supported on this device.");
alert.setTitle("NFC Unavailable");
alert.show();
}
else {
IntentFilter tagDetected = new IntentFilter(NfcAdapter.ACTION_NDEF_DISCOVERED);
Intent intent = new Intent(getActivity().getApplicationContext(), getClass());
intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
final PendingIntent pendingIntent = PendingIntent.getActivity(getActivity().getApplicationContext(), 0, intent, 0);
IntentFilter[] filters = new IntentFilter[]{
new IntentFilter(NfcAdapter.ACTION_TECH_DISCOVERED),};
String[][] techList = new String[][]{
new String[]{NfcA.class.getName()},
new String[]{NfcB.class.getName()},
new String[]{NfcF.class.getName()},
new String[]{NfcV.class.getName()},
new String[]{NfcBarcode.class.getName()
},
// Filter for nfc tag discovery
};
_nfcAdapter.enableForegroundDispatch(getActivity(), pendingIntent, filters, techList);
}
}
@Override
public void onPause() {
super.onPause();
_nfcAdapter.disableForegroundDispatch(getActivity());
}
@Override
public void onNewIntent(Intent intent) {
super.onNewIntent(intent);
HBClass hb = new HBClass();
if (intent.getAction() == NfcAdapter.ACTION_TECH_DISCOVERED) {
Boolean res = true;
if (res) {
Tag tag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);
if (tag != null) {
if (hb.ReadTagSync(tag)) {
Context context = getContext();
mheartImage.startAnimation(mHeartAnimation);
CharSequence toastMessage = "Transmission successful";
int duration = Toast.LENGTH_SHORT;
Toast.makeText(context, toastMessage, duration).show();
textView.setText("Scan a new Tag");
}
}
}
}
}
public void SendRWBool(boolean someval) {
writeFlag = true;
//WriteNFC(tg);
}
private void CheckNfcStatus() {
Context context = getActivity().getApplicationContext();
int duration = Toast.LENGTH_LONG;
if (_nfcAdapter == null) {
CharSequence toastMessage = "No NFC available for the device!";
Toast.makeText(context, toastMessage, duration).show();
// NFC is not available for device
} else if (!_nfcAdapter.isEnabled()) {
CharSequence toastMessage = "Please Enable NFC!";
Toast.makeText(context, toastMessage, duration).show();
// NFC is available for device but not enabled
} else {
CharSequence toastMessage = "NFC enabled!";
Toast.makeText(context, toastMessage, duration).show();
// NFC is enabled
}
}
实际上,NFC 是一个 Activity 范围内的操作,确实需要在您的 Activity 中处理。
配置等某些部分可以在 Fragments 中完成,但与标签数据的实际交互应该在 Activity 中完成,无论您使用的是 Manifest、ForegroundDispatch 还是 enableReaderMode。
你需要改变你的想法才能得到你想要的。
将您的 NFC 处理代码放在 Activity 中,但要根据哪个片段处于活动状态来决定它的作用。
例如一些伪代码
handleNfc() {
if current fragment equal Fragment 1 {
// Process NFC the Fragment 1 way
} else {
// Process NFC the Fragment 2 way
}
}
有多种方法可以通过 Fragment 与 activity 通信来实现这一点,它是创建时的“当前”片段,并且 Activity 为 Fragment 传回已处理的数据使用。
一些选项是 Activity 到 Fragment 通信的接口。
或者我认为更好的方法是共享视图模型,因为 Fragment 很容易观察共享视图模型,以便在 Activity 完成处理 NFC 数据时得到通知。