summaryrefslogtreecommitdiffstats
path: root/res/values
Commit message (Collapse)AuthorAgeFilesLines
* Merge "Improve NFC Admin permission strings, for easier translation."Nick Pelly2011-09-221-2/+3
|\
| * Improve NFC Admin permission strings, for easier translation.Nick Pelly2011-09-221-2/+3
| | | | | | | | Change-Id: Iadf9d337e0645aaf3d3aafaee0ab710c76d04257
* | Use 'Touch to beam' text. Increase font size. Center layouts.Nick Pelly2011-09-211-1/+1
|/ | | | | Bug: 5350022 Change-Id: I803facfd2f50329771ad6eb6e608b91a94e9a6bb
* Remove first-share notification.Martijn Coenen2011-09-151-6/+0
| | | | | Bug: 5296866 Change-Id: I90ccb7127b61aa2242fdb5252cdacccc049d5081
* Touch to send hint for NdefPush.Martijn Coenen2011-08-241-1/+1
| | | | | | | | | Show hint when: - First time sharing (until successful again). - 3 share failures (until successful again). - 3 seconds in p2p range and no confirmation (fade in). Change-Id: I413d45b76ee8588d4aa99351e34212ecc38d8f8e
* Initialize LPF with first value, so that we have a betterNick Pelly2011-08-181-1/+1
| | | | | | chance of immediately triggering after 10 samples Change-Id: I7884204c7e3aeaf6191f5bb05f60153f07b800c7
* Implement Tap-to-Share and Tilt-to-Share (DropShare).Nick Pelly2011-08-121-1/+1
| | | | | | | | | | | | | | | | | | | o Text says "Tap to Share", but tilting (the phone on top sends) also works. o Move text to top. Remove arrows. o First Accelerometer value takes ~700ms :( o Only call onP2pSendComplete on success. If the send failed, we retry quietly. This improves perceived reliability. o Reduce debounce from 1000ms to 750ms. TODO o Never do orientation change while in the animation activity o Get rid of black transition when entering/leaivng activity o Figure out why it takes 700ms to get first accelerometer value o Improve launch time of animation activity (sometimes it takes 3+ seconds) o Consider going back to a window overlay? o Make it snappy snappy snappy Change-Id: Idbc8e4bb744051b7b69d234a51a3ce69e23b699f
* Latest UX animations and cleanup of P2pAnimationActivity.Martijn Coenen2011-08-111-1/+1
| | | | Change-Id: Ib24ea71f46087b6415204b222213fc9c8348f5fb
* Move 0-click animations to activity.Martijn Coenen2011-08-101-1/+1
| | | | | | | | | - Start activity instead of window overlay; - Implement "the real twist": need to twist back to share; - Implement receive animation (slide out); - General cleanup. Change-Id: I3f6a015c2a73f309892a8c5c3b1ea1b133b54d42
* 0-click animations: "tap to send" and "tilt to send".Martijn Coenen2011-08-081-1/+1
| | | | Change-Id: I771b97bc090ebce07eeb46807c8fb337be703513
* Pop up notification on first succesful Tap to Share.Martijn Coenen2011-07-281-0/+6
| | | | Change-Id: Id2ddeea908af1159e5738e52a92f7f9818496761
* Adding content description for accessibility.Svetoslav Ganov2011-07-211-0/+4
| | | | Change-Id: If4b8b63a702de6f048b6476e8f08d6d5442a72d5
* Bluetooth dropbox for out-of-band transfersBen Dodson2011-07-201-0/+13
| | | | | | | | Use dropbox for ME profile. Transiently turn on Bluetooth. Change-Id: I81556a67872e7e0ac7c66c0376549adc5f0c168d
* Add com.android.nfc.permission.NFCEE_ADMIN.Jeff Hamilton2011-03-251-0/+5
| | | | | | | | | | It controls permissions for NFCEE administration and is checked based on the signature of Nfc.apk and the caller. The NFCEE admin permission checking is currently set to check the stock NFC permission. Change-Id: I164511d8f6850034ca0fc1f6f7f75c5ef212fbc2
* Enable NFC service as an application service.Nick Pelly2010-10-151-0/+1
| | | | | | | | | | | | | Uses ServiceManager.addService() to register the service. Uses BOOT_COMPLETE to start the service. Uses sharedUserId com.android.nfc so that it has a fixed uid. Uses android:persistant so that the process is not killed. Change-Id: If4264baf5dc457ee0a3ad5788c5945e84173b1ea Signed-off-by: Nick Pelly <npelly@google.com>
* NFC application.Nick Pelly2010-10-141-0/+4
NFC application contains the NFC service code that implements NFC API and talks to NFC hardware. This is the first cut at moving NFC service code out of frameworks/base into application service. Android.mk are renamed to Android.mk.hide at this commit because it does not work yet. Signed-off-by: Nick Pelly <npelly@google.com>