我正在使用nfc为Android应用程序发送p2p手机短信,我的问题是即使我在一台设备中关闭应用程序并在第二台设备中打开它,第二台设备也可以发送消息,第一台设备将自动打开应用程序(应用程序关闭时不应该发生)
那么当我从其他设备发出nfc消息时,如何禁用nfc打开应用程序......(这两个设备中的应用程序都是相同的)
这是Manifest:
var dto1 = new Dto1 { Property1 = "Value1"; }
var dto2 = new Dto2 { Property2 = "Value2"; }
var model = Mapper.Map<FlattenedViewModel>(dto1); // map dto1 properties
Mapper.Map(dto2, model); // append dto2 properties
接收旁边代码:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.vitee.nfcsender">
<uses-permission android:name="android.permission.NFC" />
<uses-sdk android:minSdkVersion="16"/>
<uses-feature android:name="android.hardware.nfc" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="Android NFC Demo"
android:theme="@style/AppTheme">
<activity
android:name=".NFCActivityCustomer"
android:label="NFC Data Sender">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".NFCActivityPromoter"
android:label="NFC Data Display">
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="text/plain" />
</intent-filter>
</activity>
</application>
</manifest>