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
5
votes
1 answer

NFC Peer2Peer Mode - Android Beam - ISO 18092

I need to find out how in Android Beam the P2P mode is managed. I found some general information about P2P: There is an active P2P mode (not recommended by NFC Forum) and a passive one (recommended by NFC Forum) where the passive device works like a…
ms88-aut
  • 375
  • 4
  • 13
5
votes
2 answers

Making NFC/Beam more automatic

I am adding NFC/Beam capabilities to my app and I would like it to work as automatically as possible. I would like to get rid of the "Touch To Beam" screen from the sender and the "New tag scanned" screen from the receiver. Basically, I want it to…
user306517
  • 523
  • 8
  • 21
4
votes
4 answers

How can I make sure Android Beam doesn't start a new instance of my 'singleTop' activity?

First, the use case : 2 phones have my app opened on the same screen. I want one user to be able to share the screen content (data) with the other one without necessarily opening a new instance of the activity when beaming using NFC. (both Android…
4
votes
1 answer

Android NFC with USB-NFC-Reader

I have an Android tablet with Android 4.2. This tablet does not have NFC hardware. However I have an external USB reader: ACR 1252U, that came with an Android library. This library unfortunately only gives me basic functionality - read and write…
Michael B
  • 1,660
  • 3
  • 28
  • 59
4
votes
1 answer

How to only allow NFC interaction with devices that have the same application/activity running

I have an application that uses NFC. I want to limit the NFC interactions to other devices that are on the same activity of my application. Problem At the moment if I use a device A that has Chrome opened and my device B running my application,…
J_Strauton
  • 2,270
  • 3
  • 28
  • 70
4
votes
3 answers

P2P NFC Communication Between Galaxy S3 and ACR122

I'm working on a project which requires an NFC communication between an android phone and a PC. I am using Galaxy S3 as android phone and ACR122 as NFC reader. I have tried the applications at here and here. I used the sample application which found…
4
votes
2 answers

Android NFC p2p to retrieve information

I was reading about Near Field Communication on Android and was wondering if there is any way to retrieve information from one phone by another. So this can be done in two ways : Phone(Retriever) connects via NFC to another Phone(Client). The…
4
votes
2 answers

Android Beam - how to beam the correct data?

I am in a android beam project right now. And I copied a test class from android developers. My problem is to send the correct data. If I connect (p2p) with another device and press "Tab to beam" only a URI to the android market arrives. But if i…
user970470
3
votes
0 answers

Someone is actually able to exchange NDEF messages in real world apps?

I implemented an app offering an interaction between two devices based on Android Beaming. In my current implementation, the beaming functionality is unusable. When the two devices touch each other and one of them is ready to beam, a screen showing…
Antonio Sesto
  • 2,868
  • 5
  • 33
  • 51
3
votes
1 answer

Android Beam json file

I have a simple activity that launches a file chooser and then sends the file via Android beam like so: @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { if (requestCode==0…
Stralo
  • 474
  • 4
  • 16
3
votes
1 answer

Android NFC restart App

I use NFC to send text records from my app on device Nr.1 to my app on device Nr.2. Then the device is in touch, on both devices popup "touch to beam" UI. If I touch and beam message on device Nr.1 (sending part ot the pair) - message sent,…
3
votes
1 answer

Is it possible to transfer NFC data from one Android device to another without the 'Touch to Beam' screen?

I am trying to send NFC data from one Android device to another. I was able to do it successfully using the 'Touch to Beam' functionality. But I would like the data transfer to take place automatically as soon as both the devices are together. I saw…
unni
  • 183
  • 2
  • 9
3
votes
1 answer

NFC reader and phone: unique authentication without app

I have an NFC receiver / sender (depends on how configured)...I want to use it as an NFC receiver and when the customer holds his phone to it (I am going for Android for now), It needs to get some sort of response. As Android has 'Android Beam',…
Boy
  • 7,010
  • 4
  • 54
  • 68
3
votes
0 answers

Testing Android Beam in Simultator

I am trying to do Android Beam in Android, I don't have two real device that support NFC. So Is it possible to do this in GenyMotion or anything. Any suggestion ??
Bot
  • 2,285
  • 3
  • 17
  • 20
3
votes
1 answer

Capture the Beaming progress and show on a progress bar

I am developping an application that uses Android Beam. What I would like to know is if there is a way to capture the current receiving Beam and to visualize the progress in a progress bar so that the user gets a visual feedback of the transferring…
1
2
3
9 10