我正在编写一个使用NFC标签的应用程序。我希望NFC标签成为我的应用程序的入口点 - 包含电话标签的关闭卡应该开始我的活动。然后,当活动正在运行时,我想要禁用所有可以使用NFC标签的意图过滤器,因此另一个关闭将无效(我不希望我的活动重新开始)。我知道如何使用活动别名“禁用”我的意图过滤器:
<activity-alias android:enabled="true"
android:name=".alias.NFCEntryPoint"
android:targetActivity="pl.mitrue.safedb.NFCEntryPoint"
android:exported="true"
android:icon="@drawable/ic_launcher"
android:label="@string/alias.pl.mitrue.safedb.NFCEntryPoint" >
<intent-filter>
<action android:name="android.nfc.action.TAG_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity-alias>
然后我可以以编程方式禁用别名,因此我的意图过滤器也被禁用:
getPackageManager().setComponentEnabledSetting(new ComponentName("pl.mitrue.safedb", "pl.mitrue.safedb.alias.NFCEntryPoint"),
PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);
现在问题是:我有其他应用程序使用我的设备上安装的那种过滤器。现在,当我的应用程序运行并且我禁用了我的意图过滤器(通过禁用活动别名)时,会出现一个对话框,要求我选择要使用的应用程序。有什么方法可以避免这种情况吗?在最简单的情况下,一旦我的应用程序启动,我不想在关闭NFC标签时采取任何行动。有没有办法让我的应用程序成为唯一可以接收外部意图的应用程序?
为了记录:我不想完全关闭NFC(我不知道它是否可能),因为我可能想在以后的其他活动中使用它。
我希望我明白我的观点。因为我是新来的,请理解。
谢谢!
答案 0 :(得分:1)
我遇到了类似的问题,其中: 1)如果我在单元格的开始屏幕(所有应用程序已关闭),当传递mifare经典卡片时,自动打开我的应用程序,而不会询问哪个应用程序想要打开,如果有许多应用程序也读取mifare classic。< / p>
2)如果我的应用程序已打开,并通过了一张卡片,请不要关闭我的应用程序并询问我使用的应用程序是否有多个应用程序也可以读取mifare classic。 解决方案:使用Foreground Dispatch
在我的主要活动中:
private IntentFilter[] intentFiltersArray;
private String[][] techListsArray;
private PendingIntent pendingIntent;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
pendingIntent = PendingIntent.getActivity(this, 0, new Intent(this, getClass()).addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP), 0);
IntentFilter ndef = new IntentFilter(NfcAdapter.ACTION_NDEF_DISCOVERED);
try {
ndef.addDataType("text/plain");
}
catch (MalformedMimeTypeException e) {
throw new RuntimeException("fail", e);
}
intentFiltersArray = new IntentFilter[] {ndef, };
techListsArray = new String[][] { new String[] { android.nfc.tech.MifareClassic.class.getName() } };
}
@Override
protected void onResume() {
super.onResume();
adaptadorNFC = NfcAdapter.getDefaultAdapter(this);
System.out.println("Se setearan parametros");
final Intent intent = new Intent(this.getApplicationContext(), this.getClass());
intent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
adaptadorNFC.enableForegroundDispatch(this, pendingIntent, intentFiltersArray, techListsArray);
leerTarjeta(this.getIntent());
}
@Override
protected void onPause() {
System.out.println("Se dessetearan parametros");
adaptadorNFC.disableForegroundDispatch(this);
super.onPause();
}
希望这可以帮助其他人一年前提出这个问题:P