0

Can I send multiple NDEF messages using setNdefPushMessageCallback or setNdefPushMessage like in a loop from one activity in Android?

Michael Roland
  • 39,663
  • 10
  • 99
  • 206
Sathiya
  • 53
  • 10

1 Answers1

0

You can use those methods wherever and as often as you want within your activity's code. However, only the last message set before any peer-to-peer (Beam) communication will be transfered by Android. Messages that you previously set will simply be dropped.

So you can only send one NDEF message over a peer-to-peer connection.

Michael Roland
  • 39,663
  • 10
  • 99
  • 206
  • Thanks @Michael Roland. Also can u pls tell me if I can send NDEF message to another reader without using Android Beam service on my Android Device? – Sathiya Aug 19 '14 at 09:10
  • @Sathiya If you want to send data using peer-to-peer mode, your only option is to use Android Beam. For other scenarios see [this question](http://stackoverflow.com/q/24096356/2425802) and [this question](http://stackoverflow.com/q/25157878/2425802). – Michael Roland Aug 19 '14 at 10:59