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?
Is it possible to active Android Beam "Tab to beam"-screen with a simulated touchevent?
342 Views Asked by Luciflore At
1
There are 1 best solutions below
Related Questions in ANDROID
- Delay in loading Html Page(WebView) from assets folder in real android device
- MPAndroidChart method setWordWrapEnabled() not found
- Designing a 'new post' android activity
- Android :EditText inside ListView always update first item in the listview
- Android: Transferring Data via ContentIntent
- Wrong xml being inflated android
- AsyncTask Class
- Unable to receive extras in Android Intent
- Website zoomed out on Android default browser
- Square FloatingActionButton with Android Design Library
- Google Maps API Re-size
- Push toolbar content below statusbar
- Android FragmentPagerAdapter Circular listview
- Layout not shifting up when keyboard is open
- auDIO_OUTPUT_FLAG_FAST denied by client can't connect to localhost
Related Questions in EVENTS
- OpenLayer 3: Map pointer up event can not be triggered when the map created on overlay
- Angular scroll directive
- Setting multiple events in one ext.net button
- Detect if Application was suspended in OnNavigatedFrom for Windows Phone 8
- When in click a radio button, it scroll to the top. How to prenvent that?
- Event subscribed but null in child class (after threads initialize)
- How to get results each sec from "perf stat -d sleep 1000"
- How to register event for TextBox end editing
- Stop the installshield installation if a file is not found in vb.net
- How to capture the next event based on a condition
- Flask server to notify webclient when changes occur
- Google analytics event tracking, retrieve results
- What is the correct way to code event handlers for serializable model objects?
- Android version of NSNotificationCenter (event binding)
- Center JoptionPaneMessageDialog in parent element of the source element that generated the event
Related Questions in TOUCH
- Removing sprite when Touched
- CSS Menu system not working in IOS 8
- TouchUI Image disable upload in dialog
- Content of iframe (ionic app) doesn't scroll on Internet Explorer using touch
- How do i change the modification/creation date of a folder
- How to detect whether touch slide is taking me out of browser window on tablets?
- Generate Java Swing UI Touch Screen Interaction Heat Maps
- Disable taphold default event, cross device
- Cocos2d Node not accepting Touches
- (UNITY3d android game) When i don't touch the screen, my fps are lower than when i touch
- Detect active touchscreen on Linux (and if multitouch)
- Seamlessly passing drag&drop actions from children controls to parent ScatterViewItem
- touch should not updated `updated_at` on destroy in Rails3
- Why is touchstart event after click?
- Don't fire onclick for touches - Javascript
Related Questions in NFC
- Android NFCA issues
- Access protection for NFC Tags
- Android makeReadOnly() throws IOException
- NFC Bluetooth handover - WITHOUT user confirmation
- Using external ACR1222L to get NDEF Messages w/ nfctools OR nxpnfclib
- node-hid not showing all USB devices
- How to convert a Chinese string to english for windows phone store apps[Javascript]
- How can I prevent (overwriting or format or cloning anything else) my NFC TAG?
- Android HCE issue
- onNewIntent() being called in onResume() multiple times
- When app receives NFC data it opens "New Tag collected"
- Android NFC passing single parameter when starting application
- How to mock a Android NFC Tag object for unit testing
- Short range communication (Bluetooth, NFC ?)
- NFC Write Sample
Related Questions in ANDROID-BEAM
- How to receive file using NFC (Android Beam) in Android
- How to a send SNEP GET request from Android
- NFC Android App acting differently on different phones
- Android Beam: mimetype between different apps
- Android Beam: keep pairing
- Sending NDEF messages over NFC
- Beam meta informations to my app or a URL if app is not installed
- Is it possible to transfer data more than 2 times between two nfc supported android device without moving phones
- Disable Android Beam for selected activities
- Sending URL from Android to Windows Phone via NFC gives Play Store link
- Is it possible to use Android Beam between an android device and another NFC device?
- How to read NFC Beam and tags?
- Is it possible to transfer data to NFC tag without Beam? Any alternatives?
- Simulate NFC tag on an Android phone
- Android NFC still weak of API on 4.0.3
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I guess, it is not. Most likely this is kind of a security issue. If you force the User to touch the screen, he is aware, that at least some data is leaving his phone. This way, no-one can sniff the data, you are attempting to send. The NFC feature on phones is not like a RFID-card, where one is able to write data permanently on the chip. I think NFC on android is more like an interface to NFC. You are able to "pipe" data through it, but storing is not yet possible. In the moment the User "beams" data, internal code is triggered to send the data you prepared.
There may be a way to send it via code, if you root your phone, look at the internals, change them, and build your custom-rom.