Questions tagged [android-beam]

Android Beam is a feature introduced in Ice Cream Sandwich that allows a device to push an NDEF message or larger files onto another device by physically tapping the devices together. NFC peer-to-peer mode and the Simple NDEF Exchange Protocol are used to initiate the communication.

The Android Beam™ feature allows a device to push an NDEF message or even larger files onto another device by physically tapping the devices together.

NFC peer-to-peer mode and the NFC Forum Simple NDEF Exchange Protocol (SNEP) are used to initiate the communication. This provides an easier way to establish the communication channel for data exchange than other wireless technologies like Bluetooth, that require manual device discovery or pairing. The connection is automatically started when two devices come into range. Android Beam is available through a set of NFC APIs, so any application can transmit information between devices. For example, the Contacts, Browser, and YouTube applications use Android Beam to share contacts, web pages, and videos with other devices.

See the Android NFC API Guide for further information.

143 questions
0
votes
2 answers

Duplex NFC message exchange support

I am new to NFC protocol. Can someone let me know whether it is possible to exchange NDEF/SNEP messages BOTH ways in one session? I mean from NFC protocol point of view. I know using Beam feature you can send one-way message [e.g. Phone->PC] but to…
0
votes
2 answers

Beam meta informations to my app or a URL if app is not installed

I want to beam the content of my currient screen. Basically I have three tabs with long lists, I want to beam the actual tab and its position. My goal is if the app is installed: Beam some id, the tab and position If the app is not installed: I want…
rekire
  • 47,260
  • 30
  • 167
  • 264
0
votes
1 answer

a few basic questions about NFC, NDEF and NFC enabled android phones

I want to start android programming to be able to transfer data between a NFC enabled smartphone and a custom device, but I am not able to find clear information about a few things For example, my custom device has to be able to send data to the…
user13267
  • 6,871
  • 28
  • 80
  • 138
0
votes
1 answer

Android Beam - special usecase

I have this use-case for Android Beam. I could have tested it myself but my app is not available in Google Play yet. Here it goes: I want to beam some content from my phone and the receiver phone does not have it. So with AAR, the app will be…
0
votes
1 answer

Can Android NFC Peer2Peer communicate with a non-Android NFC Device (NOT Tag)?

I know Android NFC device can use Android Beam to share small size information like URL. And, I know the Android NFC can't pretend be a tag. In my potential Access Control project, we want to use similar tech to share 32 bytes Digital Key and…
Yi Jiang
  • 3,938
  • 6
  • 30
  • 62
0
votes
1 answer

How to use Java Android Beam to beam message from PC TO Phone?

Basically, I am asking how to reverse the Android Beam program, which sends a message from an Android Phone that has NFC capabilities, to eclipse on my PC via an NFC reader. I have no idea where to start. I CAN FIND NO DOCUMENTATION ON WHERE TO GET…
nbhgt
  • 37
  • 2
  • 8
0
votes
1 answer

android nfc - mifare classic 1k Increment operation tranceive failed

I want to store an integer value and increment or decrement it with API function. I have readed the card with an utility and this is the content of block 5: It seems that there is not any value block. This is my code: int sector = 5; …
michele
  • 26,348
  • 30
  • 111
  • 168
0
votes
0 answers

Android Beam: Sending message to only specific application

I am developing one application which uses Android Beam. Can we send message through Beam which only gets delivered to the same application ? No other app would be able to receive that, not even device's default NFC reader application !! If you have…
0
votes
1 answer

Plain text over Android Beam

I'm developing an Android application with minSdk=14 and targetSdk=17. I want to the application to use Android Beam to send a plain text string from the phone to a NFC reader. I haven't got the reader yet and have been trying to Beam plain text…
Nait
  • 1,055
  • 1
  • 14
  • 19
0
votes
4 answers

Android Beam - payload transfer from both devices when only one Touch To Beam?

Ok, I watched the Google I/O from 2011 presentation on NFC on peer to peer. The demo was done on Gingerbread and using the application Sticky Notes found Now in this demo, both device the onNewIntent() was called at the same time so both devices are…
Springy
  • 588
  • 5
  • 15
0
votes
1 answer

Beam how to force a restart of my application android

I use Beam API to exchange data by NFC. I need to reinitialize my exchanged data, else the same data are sent when the devices approach from each to other again. How to force the reinitialization? with a call to onCreate? how to implement
user1482868
  • 31
  • 2
  • 5
0
votes
1 answer

Data transfer betweeen two nfc capable devices without using android beam

I am developing an app with which I transfer a vcard between two nfc capable devices. I am able to do it if both the devices have android beam. I want to know if it is possible to transfer information from an ICS device(Having android beam) to a…
anz
  • 1,317
  • 2
  • 13
  • 25
0
votes
1 answer

Bidirectional Send/Ack Android Beam

i'm using 2 Galaxy S3 and i send a message from one to the other. I want the other to send back a response like "received msg" i'm using the android beam demo, and i want to add this ack.I send the ack message when i treat the first message in…
user1482868
  • 31
  • 2
  • 5
0
votes
1 answer

How to improve Android Beam discoverability

The presenters in the Google I/O session about Android Beam made some comments about "breaking Beam by adding things to it." They used an example of Beam being added to the Share menu, which is bad because Beam should be "magical" and "simple." The…
Cobus Kruger
  • 8,338
  • 3
  • 61
  • 106
0
votes
1 answer

Is it possible to active Android Beam "Tab to beam"-screen with a simulated touchevent?

On ICS when you want to beam some NdefMessage you have to touch the screen ("touch to beam"). I would like to know if it is possible to beam data only with some code, without any user touch. Is it possible to beam some data by simulating a touch?
Luciflore
  • 11
  • 1
1 2 3
9
10