Home | History | Annotate | Download | only in content

Lines Matching refs:clipData

841      * set in the returned chooser intent, with its ClipData set appropriately:
843 * or a new ClipData build from {@link #getData()}.
863 ClipData targetClipData = target.getClipData();
865 ClipData.Item item = new ClipData.Item(target.getData());
872 targetClipData = new ClipData(null, mimeTypes, item);
1010 * being sent can be supplied through {@link #setClipData(ClipData)}. This
1012 * content: URIs and other advanced features of {@link ClipData}. If
1015 * for compatibility with old applications. If you don't set a ClipData,
1048 * being sent can be supplied through {@link #setClipData(ClipData)}. This
1050 * content: URIs and other advanced features of {@link ClipData}. If
1053 * for compatibility with old applications. If you don't set a ClipData,
3212 * specified in its ClipData. When applying to an Intent's ClipData,
3213 * all URIs as well as recursive traversals through data or other ClipData
3221 * specified in its ClipData. When applying to an Intent's ClipData,
3222 * all URIs as well as recursive traversals through data or other ClipData
3549 private ClipData mClipData;
3582 this.mClipData = new ClipData(o.mClipData);
4264 * Return the {@link ClipData} associated with this Intent. If there is
4269 public ClipData getClipData() {
5228 * Set a {@link ClipData} associated with this Intent. This replaces any
5229 * previously set ClipData.
5231 * <p>The ClipData in an intent is not used for Intent matching or other
5241 * <p>If the ClipData contains items that are themselves Intents, any
5246 * <p>The MIME type, label, and icon in the ClipData object are not
5248 * MIME type of the Intent itself, not what it may find in the ClipData.
5249 * A common practice is to construct a ClipData for use with an Intent
5254 public void setClipData(ClipData clip) {
6236 * Use with {@link #fillIn} to allow the current ClipData to be
6257 * <li> clip data, as set by {@link #setClipData(ClipData)}.
6877 mClipData = new ClipData(in);
7019 * {@link #ACTION_SEND_MULTIPLE} to {@link ClipData}. Also inspects nested
7029 // Bail when someone already gave us ClipData
7038 // Since we migrated in child, we need to promote ClipData
7056 final ClipData clipData = new ClipData(
7058 new ClipData.Item(text, htmlText, null, stream));
7059 setClipData(clipData);
7090 final ClipData clipData = new ClipData(
7095 clipData.addItem(makeClipItem(streams, texts, htmlTexts, i));
7098 setClipData(clipData);
7109 private static ClipData.Item makeClipItem(ArrayList<Uri> streams, ArrayList<CharSequence> texts,
7114 return new ClipData.Item(text, htmlText, null, uri);