Home
last modified time | relevance | path

Searched refs:paste (Results 1 – 25 of 29) sorted by relevance

12

/frameworks/base/docs/html/guide/topics/text/
Dcopy-paste.jd146 the clipboard. To paste the string, you get the clip object from the clipboard and copy
154 the clipboard. To paste the data, you get the clip object, get the
162 clipboard. To paste the data, you get the clip object and then copy the Intent object
171 If you want to allow users to paste data into your application, you don't have to handle all
173 paste it. Besides having a certain data form, the clip object also contains metadata that tells
179 You may also want to allow users to paste text regardless of the form of data on the
181 paste this text. This is described in the section <a href="#CoerceToText">Coercing the
221 Applications that want to paste the data get the URI from the clipboard and use it to
227 to the clipboard. Users can then paste the shortcut into their applications for later use.
232 users to copy and paste multiple selections as a single clip. For example, if you have a list
[all …]
Dindex.jd3 page.landing.intro=Use text services to add conventient features such as copy/paste and spell check…
/frameworks/base/core/java/android/inputmethodservice/
DExtractEditText.java114 if (id == android.R.id.copy || id == android.R.id.paste) stopTextActionMode(); in onTextContextMenuItem()
/frameworks/base/docs/html/samples/
Dindex.jd12 see the overall project structure. You can copy and paste the code you need, and if you want to
/frameworks/base/docs/html/training/secure-file-sharing/
Dindex.jd32 users to copy and paste files between areas in external storage. One way a sending app can
/frameworks/base/docs/html/guide/topics/providers/
Dcontent-providers.jd69 paste complex data or files from your application to other applications.
/frameworks/base/docs/html/distribute/tools/promote/
Dbadges.jd15 click <em>Build my badge</em>, then paste the HTML into your web content.</p>
354 <p>Copy and paste this HTML into your web site:</p>
/frameworks/base/docs/html/about/versions/
Dandroid-1.5-highlights.jd93 <li>Copy 'n paste in browser</li>
Dandroid-3.0.jd161 <p>Applications can now copy and paste data (beyond mere text) to and from the system-wide
166 paste it into another application that supports that type of content.</p>
184 <p>You can then read a file from the clipboard (in order to paste it) by calling {@link
188 before attempting to paste it.</p>
194 <p>For more information, read the <a href="{@docRoot}guide/topics/text/copy-paste.html">Copy
195 and Paste</a> documentation. You can also see a simple implementation of copy and paste in the API …
669 <li>{@link android.widget.TextView} now supports keyboard-based cut, copy, paste, and select-all,
Dandroid-2.3-highlights.jd98 <h3>One-touch word selection and copy/paste</h3>
101 by press-hold, then copy to the clipboard and paste. Pressing on a word enters a
Dandroid-3.0-highlights.jd111 <h3>Improved text selection, copy and paste</h3>
113 …lect an action from the Action Bar, such as copy to the clipboard, share, paste, web search, or fi…
Dandroid-4.3.jd84 <li><a href="#A11yText">Select text and copy/paste</a></li>
978 <h3 id="A11yText">Select text and copy/paste</h3>
981 an {@link android.accessibilityservice.AccessibilityService} to select, cut, copy, and paste
995 {@link android.view.accessibility.AccessibilityNodeInfo#ACTION_COPY}, then later paste with
Dandroid-4.1.jd57 <li><a href="#CopyIntent">Copy and paste with intents</a></li>
597 <h3 id="CopyIntent">Copy and paste with intents</h3>
Dandroid-4.0.jd1691 <li>System clipboard: Applications can copy and paste data (beyond mere text) to and from
1693 <a href="{@docRoot}guide/topics/text/copy-paste.html">Copy and Paste</a> developer guide.</li>
/frameworks/base/docs/html/
Dlicense.jd56 you could quote the text in a book, cut-and-paste sections to your blog, record
/frameworks/base/core/java/android/widget/
DTextView.java9138 static final int ID_PASTE = android.R.id.paste;
9189 paste(min, max, true /* withFormatting */); in onTextContextMenuItem()
9193 paste(min, max, false /* withFormatting */); in onTextContextMenuItem()
9458 private void paste(int min, int max, boolean withFormatting) { in paste() method in TextView
9465 final CharSequence paste; in paste() local
9467 paste = clip.getItemAt(i).coerceToStyledText(getContext()); in paste()
9471 paste = (text instanceof Spanned) ? text.toString() : text; in paste()
9473 if (paste != null) { in paste()
9476 ((Editable) mText).replace(min, max, paste); in paste()
9480 ((Editable) mText).insert(getSelectionEnd(), paste); in paste() local
DEditor.java3189 com.android.internal.R.string.paste). in populateMenuWithItems()
/frameworks/ex/common/java/com/android/ex/editstyledtext/
DEditStyledText.java171 private static final int ID_PASTE = android.R.id.paste;
777 CharSequence paste) { in setContextMenuStrings() argument
780 STR_PASTE = paste; in setContextMenuStrings()
/frameworks/base/docs/html/preview/testing/
Dperformance.jd131 Since the block of data is output in CSV format, it's very straightforward to paste it to your
375 straightforward to paste it to your spreadsheet tool of choice, or collect and parse with
/frameworks/base/docs/html/guide/topics/ui/controls/
Dtext.jd36 (cut, copy, paste) and data look-up via auto-completion.</p>
/frameworks/base/docs/html/training/contacts-provider/
Ddisplay-contact-badge.jd83 a contact, find and copy information, and then paste it into the appropriate app. Instead, they
/frameworks/base/docs/html/google/play/billing/
Dbilling_integrate.jd88 …rvice.aidl} file from {@code &lt;sdk&gt;/extras/google/play_billing/} and paste it into the {@code…
/frameworks/opt/chips/src/com/android/ex/chips/
DRecipientEditTextView.java2586 if (id == android.R.id.paste) { in onTextContextMenuItem()
/frameworks/base/docs/html/guide/practices/
Doptimizing-for-3.0.jd443 >Clipboard</a>: An example of how to use the clipboard for copy and paste operations.</li>
/frameworks/base/docs/html/google/play/licensing/
Dadding-licensing.jd887 <p>To add the public key to your application, simply copy/paste the key string

12