Lines Matching refs:transfer
31 Android Beam file transfer. To send files, you request permission to use NFC and external
33 transfer.
36 The Android Beam file transfer feature has the following requirements:
40 Android Beam file transfer for large files is only available in Android 4.1 (API level 16)
44 Files you want to transfer must reside in external storage. To learn more about using
49 Each file you want to transfer must be world-readable. You can set this permission by
53 You must provide a file URI for the files you want to transfer. Android Beam file transfer
65 To allow your app to use Android Beam file transfer to send files from external storage using
122 <h3>Specify Android Beam file transfer</h3>
124 Since Android Beam file transfer is only available in Android 4.1 (API level 16) and later,
125 if your app depends on Android Beam file transfer for a key part of its functionality you must
144 transfer support in code.
147 To test for Android Beam file transfer support in code, start by testing that the device
151 version supports Android Beam file transfer by testing the value of
152 {@link android.os.Build.VERSION#SDK_INT}. If Android Beam file transfer is supported, get an
174 // Android Beam file transfer isn't supported
180 * Disable Android Beam file transfer features here.
183 // Android Beam file transfer is available, continue
196 Once you've verified that the device supports Android Beam file transfer, add a callback
197 method that the system invokes when Android Beam file transfer detects that the user wants
199 {@link android.net.Uri} objects. Android Beam file transfer copies the files represented by
215 * Callback that Android Beam file transfer calls to get
234 Once you've implemented the interface, provide the callback to Android Beam file transfer by
247 // Android Beam file transfer is available, continue
265 this approach if you can define the URIs to transfer before the NFC touch event occurs.
271 To transfer one or more files to another NFC-enabled device, get a file URI (a URI with a
273 {@link android.net.Uri} objects. To transfer a file, you must also have permanent read access