Lines Matching full:link
3 parent.link=index.html
7 next.link=receive.html
33 Android defines several actions, including {@link android.content.Intent#ACTION_SEND} which, as
46 {@link android.app.ActionBar} is to use {@link android.widget.ShareActionProvider}, which became
47 available in API level 14. {@link android.widget.ShareActionProvider} is discussed in the lesson
56 <strong>Figure 1.</strong> Screenshot of {@link android.content.Intent#ACTION_SEND} intent chooser
61 <p>The most straightforward and common use of the {@link android.content.Intent#ACTION_SEND}
76 {@link android.content.Intent#ACTION_SEND} and MIME type text/plain, the Android system will run
79 {@link android.content.Intent#createChooser(android.content.Intent, CharSequence)
104 {@link android.content.Intent#EXTRA_EMAIL}, {@link android.content.Intent#EXTRA_CC},
105 {@link android.content.Intent#EXTRA_BCC}, {@link android.content.Intent#EXTRA_SUBJECT}. However,
111 {@link java.lang.String String[]} for extras like {@link android.content.Intent#EXTRA_EMAIL} and
112 {@link android.content.Intent#EXTRA_CC}, use
113 {@link android.content.Intent#putExtra(String,String[]) putExtra(String, String[])} to add these
119 <p>Binary data is shared using the {@link android.content.Intent#ACTION_SEND} action combined with
120 setting the appropriate MIME type and placing the URI to the data in an extra named {@link
136 <li>The receiving application needs permission to access the data the {@link android.net.Uri}
140 can read. Use {@link android.net.Uri#fromFile(java.io.File) Uri.fromFile()} to create the
141 {@link android.net.Uri} that can be passed to the share intent. However, keep in mind that not
142 all applications process a {@code file://} style {@link android.net.Uri}.</li>
143 <li>Write the data to a file in your own application directory using {@link
144 android.content.Context#openFileOutput(java.lang.String, int) openFileOutput()} with mode {@link
145 android.content.Context#MODE_WORLD_READABLE} after which {@link
147 return a {@link java.io.File}. As with the previous option, {@link
148 android.net.Uri#fromFile(java.io.File) Uri.fromFile()} will create a {@code file://} style {@link
150 <li>Media files like images, videos and audio can be scanned and added to the system {@link
151 android.provider.MediaStore} using {@link
154 {@link
156 android.net.Uri) onScanCompleted()} callback returns a {@code content://} style {@link
158 <li>Images can be inserted into the system {@link android.provider.MediaStore} using {@link
161 {@code content://} style {@link android.net.Uri} suitable for including in a share intent.</li>
162 <li>Store the data in your own {@link android.content.ContentProvider}, make sure that other
172 <p>To share multiple pieces of content, use the {@link android.content.Intent#ACTION_SEND_MULTIPLE}
192 <p>As before, make sure the provided {@link android.net.Uri URIs} point to data that a receiving