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

Android Beam NDEF to reader mode

Context: I've tried HCE in combination with reader mode and these two work like a charm. I'm looking to provide some sense of backward compatibility with the reader mode app. Is there a way to read or send NDEF messages over Beam from an Android 4.3…
gaara87
  • 2,087
  • 3
  • 21
  • 43
0
votes
2 answers

Android NDEF message with two activities and wrong intent content

I'm new to NFC with Android and I'm trying to make a kind of messaging app with NFC. I have a first activity that sends the content of an EditText view to the other phone when beaming and displays the incoming message on a TextView on the other…
apirrone
  • 13
  • 3
0
votes
0 answers

Disable Android Beam in Activity B

i have a problem using NFC in 2 activities , the first one A is a Sender activity and the Second one B is a Receiver .. My Problem is that the Second Activity is prompting to send beam so both application can send and receive ( conflict). I Have…
Seif wares
  • 43
  • 1
  • 5
0
votes
1 answer

How to set directory for sending files using Android Beam

I am working on an app that allows user to select a file from external storage and send it using Android Beam. Here is the FileBrowser Activity to select a file from a directory and return the file name and directory path back to main…
Exception
  • 2,273
  • 1
  • 24
  • 42
0
votes
0 answers

Android beam and S beam

I know that S-beam uses Wifi-Direct to transfer large files but I want to know if there is a way to send files using Wifi-Direct in devices that only supports android beam (eg. Nexus 7) without any support for S-beam ? Currently as per my knowledge…
Exception
  • 2,273
  • 1
  • 24
  • 42
0
votes
1 answer

Is it possible to transfer NFC data from one Android device to another device bypasing android beam?

I am trying to send NFC data from one Android device to another. I was able to do it successfully using the Andoid Beam functionality. But I would like the data transfer to take place automatically (bypassing Android Beam) as soon as both the…
0
votes
1 answer

Intent Filter not working for Android Beam NFC

I am sure this is simple but I cannot figure it out. All I am trying to do is send a message via NFC (android Beam) and open my App on the receiver device. I did test my code on a new Project and it worked perfectly but if I try it on my real…
0
votes
1 answer

android remove touch to beam ui for 4.1.2

I searched StackOverflow and XDA-Developer but cannot find out the way to remove "touch to beam" UI/UX for the Samsung S3 I9305 device. I also tried to create a sample foreground dispatch or Ndef message, but still need "touch to beam" UI/UX. Here…
Ralry
  • 3
  • 4
0
votes
1 answer

NFC Beam from phone to desktop

I need to send .doc file from my Nexus 5 phone to a Windows 8 desktop (with an ACR122U-A9 NFC reader connected to it). Similar projects I have found use LLCP/SNEP protocol (such as Android Beam that can be found in this link:…
sulyakas
  • 35
  • 4
0
votes
2 answers

Why does Android NFC not work with my Activity?

Once I modified an Android app and added NFC capabilities. But it just didn't work. The "Tap to Beam" just would not appear. Long story short. The app had: getWindow().setFlags(LayoutParams.FLAG_SECURE, LayoutParams.FLAG_SECURE);
Harald Hoyer
  • 1,303
  • 1
  • 8
  • 8
0
votes
1 answer

Using setNdefPushMessage in loop in Android

Can I send multiple NDEF messages using setNdefPushMessageCallback or setNdefPushMessage like in a loop from one activity in Android?
Sathiya
  • 53
  • 10
0
votes
1 answer

Can i write an app which sends file (can be an image file) to another device using NFC Android Beam that does't has the same app installed?

I can send file using below API via NFC Android Beam mNfcAdapter.setBeamPushUrisCallback() Do the other device should also have the same app to receive the file? If Yes then sending this file would not support for other platform like Blackberry…
0
votes
1 answer

onNewIntent is not being called for android nfc implementation without enabling android beam

I have been working on nfc samples for Peer-To-Peer mode. I have implemented onResume method in two different way, for initiator mode and target mode as below: For Initiator Mode: mAdapter.setNdefPushMessage(getTestNdefMessage(), this); and For…
sam18
  • 631
  • 1
  • 10
  • 24
0
votes
1 answer

Sending NDEF messages over NFC

I am working on an android application and I would like to know how to get the event when a message is sent? For the moment it sends and receives NDEF messages really well. However I want to catch the event when data is SUCCESSFULLY sent, I mean…
Ayrton Werck
  • 334
  • 4
  • 15
0
votes
1 answer

Getting a "...must implement abstract method NfcAdapter.OnNdefPushCompleteCallback error

I'm trying to learn NFC, using the document at http://www.tappednfc.com/wp-content/uploads/TAPPED-NFCDeveloperGuide-Part1.pdf. Where my class id defined, i get the following error: must implement abstract method…
Ted pottel
  • 6,869
  • 21
  • 75
  • 134