这是来自Android 开发者的网站
IntentFilter ndef = new IntentFilter(NfcAdapter.ACTION_NDEF_DISCOVERED);
try {
ndef.addDataType("*/*"); /* Handles all MIME based dispatches.
You should specify only the ones that you need. */
}
catch (MalformedMimeTypeException e) {
throw new RuntimeException("fail", e);
}
intentFiltersArray = new IntentFilter[] {ndef, };
所以在这里,intentFiltersArray[0] = ndef
。关于intentFiltersArray[1]
和超越?上面代码 中的,
after是什么意思?ndef
同样,它还有另一个代码示例
techListsArray = new String[][] { new String[] { NfcF.class.getName() } };
这里是如何techListsArray[][]
初始化的?我猜techListsArray[0][0]=NfcF.class.getName()
(NfcF
应该不应该?)但是其他元素呢?还是它只有一个元素?