Lines Matching full:beam
14 <li><a href="#TestAndroidBeam">Test for Android Beam File Transfer Support</a></li>
31 Android Beam file transfer. To send files, you request permission to use NFC and external
32 storage, test to ensure your device supports NFC, and provide URIs to Android Beam file
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)
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
134 <h2 id="TestAndroidBeam">Test for Android Beam File Transfer Support</h2>
143 >android:required</a>="false"</code>, you must test for NFC support and Android Beam file
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
160 // Flag to indicate that Android Beam is available
174 // Android Beam file transfer isn't supported
177 // If Android Beam isn't available, don't continue.
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
211 // List of URIs to provide to Android Beam
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