Copying text from notes on Android seems like a simple task - until you encounter unexpected limitations. Depending on the version of the operating system, the smartphone model (Samsung Galaxy, Xiaomi Redmi, Google Pixel) and the notes application used (Google Keep, Samsung Notes, ColorNote), the process may differ dramatically. In some places, a long tap is enough, and in others you have to use workarounds through export or third-party utilities.

In this article we will analyze all current methods for copying text from notes on Android - from basic gestures to little-known functions like ADB-commands or synchronization via the cloud. We will pay special attention to typical problems: why sometimes text is copied with artifacts, how to bypass selection restrictions in some applications, and what to do if a note is locked with a password. If you are looking for a solution for a specific model or version of Android, use the table of contents below.

1. Standard method: copy via long press

The most obvious method works in 90% of cases, but its implementation depends on the manufacturerโ€™s shell. On "pure" Android (for example, Google Pixel or Motorola) the algorithm is simple:

  1. Open a note in the application (for example, Google Keep).
  2. Find a piece of text that you want to copy.
  3. Long press on a word - a blue cursor with selection markers will appear.
  4. Drag the markers to cover the desired text.
  5. Click "Copy" in the menu that appears (or tap the two sheets of paper icon).

On smartphones Samsung with shell One UI or Xiaomi with MIUI the interface may differ:

  • ๐Ÿ”น Samsung Notes: a long press brings up a context menu immediately with the options "Select all", "Copy", "Cut".
  • ๐Ÿ”น MIUI Notes: Sometimes you need to press the pencil (edit) icon first to make the text available for highlighting.
  • ๐Ÿ”น Huawei Notes: Highlighting only works in view mode, not editing.
โš ๏ธ Attention: On some devices with Android 12 and below, long pressing may open the application menu instead of selecting text. In this case, try double tap by word or use. method from the next section.
๐Ÿ“Š What note application do you use?
Google Keep
Samsung Notes
ColorNote
MIUI Notes
Other
I donโ€™t use

2. Alternative method: copying through the menu. "Share"

If standard highlighting does not work (for example, in locked notes or when using third-party applications like Evernote), try a workaround through the export function:

  1. Open the note and search icon "Share" (usually three dots connected by lines).
  2. Select the option "Copy to clipboard" or "Export as text".
  3. If there is no such option, select "Submit" โ†’ "Message" or "Mail", then copy the text from the created draft.

This method is especially useful for:

  • ๐Ÿ”’ Notes with password protection (for example, Samsung Secure Folder).
  • ๐Ÿ“„ Long texts where selection is unstable.
  • ๐Ÿค– Applications with non-standard interfaces (for example, Notion or Obsidian).
Application Does it support "Share โ†’ Copy"? Alternative method
Google Keep โœ… Yes (via "Send โ†’ Copy to clipboard") Export to Google Docs
Samsung Notes โœ… Yes (option "Export text") Synchronization with Microsoft OneNote
ColorNote โŒ No Manual selection in edit mode
MIUI Notes โš ๏ธ Partial (only for unprotected notes) Export to PDF, then extract text
๐Ÿ’ก

If there is no copy option in the "Share" menu, select send to Google Drive or Telegram โ€”then open the file and copy the text from there.

3. locked or encrypted notes

If the note is protected by a password, fingerprint or encryption (as in Samsung Secure Folder or LockNotehere's what you can do:

  • ๐Ÿ”“ Temporary removal of protection: Unlock the note, copy it. text, then turn on the protection again. Samsung Notes this is done through the menu "More" โ†’ "Remove blocking".
  • ๐Ÿ“ฑ Screenshot + OCR: Take a screenshot of the note (if allowed), then use Google Lens or Adobe Scan for text recognition.
  • ๐Ÿ”„ Export to an unprotected format: In some applications (for example, Evernote) you can export a note to .txt or .html, bypassing the blocking.
โš ๏ธ Attention: On devices with Android 13+ screenshots in protected applications (for example Secure Folder) may be automatically blurred. In this case, use developer mode and disable the option Flags โ†’ disable_screenshot_security (required ADB).

For notes in Samsung Secure Folder or Xiaomi Private Mode the only reliable way is to temporarily move them to a regular folder:

  1. Open Secure Folder (or Private Mode on Xiaomi).
  2. Select the note and click "Move" โ†’ "To the main folder."
  3. Copy the text in the standard way.
  4. Return the note back to the secure storage.
How to bypass blocking screenshots in Secure Folder?

1. Connect the phone to the PC via ADB. 2. Run the command:

adb shell settings put global hidden_api_policy 1

3. Reboot the device. 4. Take a screenshot - there will be no blur. โš ๏ธ After copying the text, return the setting to its original state with the command adb shell settings put global hidden_api_policy 0!

4. not only)

If the note is stored locally (not in the cloud), and there are no rights on the phone root, you can extract the text via ADB (Android Debug Bridge) This method is suitable for tech-savvy users and requires:

  • ๐Ÿ–ฅ๏ธ Computer with installed ADB drivers.
  • ๐Ÿ”Œ USB cable (or Wi-Fi connection via adb connect).
  • ๐Ÿ“ฑ On mode USB debugging on the phone.

Instructions for Google Keep (the text is stored in the database com.google.android.keep):

  1. Connect the phone to the PC and do:
    adb shell
  2. Find the path to the database:
    run-as com.google.android.keep cat /data/data/com.google.android.keep/databases/keep.db > /sdcard/keep.db
  3. Copy the file to the PC:
    adb pull /sdcard/keep.db
  4. Open keep.db via SQLite Browser and find the text in the table notes.

For other applications (for example, Samsung Notes), the path to the database may be different. A universal way is to use the command:

adb shell dumpsys package com.samsung.android.app.notes | grep "dataDir"
โš ๏ธ Attention: Extract data via ADB may violate the privacy policies of some applications. Don't use this method to access other people's notes without permission.

Enable USB debugging in Settings โ†’ About the phone โ†’ Build number (tap 7 times)

Install ADB drivers on the PC (for example, via Platform Tools from Google)

Connect the phone to the PC and confirm trust in the device

Check the connection with the command adb devices-->

5. Synchronization with the cloud: copying via the web version

If notes are synchronized with the cloud (for example, Google Keep, OneNote, Evernote), the easiest way is to copy the text through a browser on your computer:

  • ๐ŸŒ For Google Keep:
    1. Open keep.google.com in a browser.
    2. Find the note you need.
    3. Select the text and copy (Ctrl+C).
  • ๐Ÿ“ For Samsung Notes:
    1. Go on notes.samsung.com.
    2. Login using the same account Samsung.
    3. Export the note to .txt via the "More" menu.

Important: some manufacturers (for example, Xiaomi) do not provide a web version for notes. In this case, use export to PDF or synchronization with Google Drive.

Advantages of this method:

  • ๐Ÿ” There are no restrictions on text selection (unlike mobile applications).
  • ๐Ÿ“‹ You can copy several notes at once through the export function.
  • ๐Ÿ–ฅ๏ธ Convenient for working with large amounts of text.
  • ๐Ÿ’ก

    Synchronization with the cloud is the most reliable way to copy if notes are not stored locally. However, for confidential data it is better to use methods without uploading to the network.

    6. Specialized applications for copying text

    If the built-in methods do not work, you can use third-party utilities. Here are the top 3 proven solutions:

    Application Functional Suitable for
    Clipboard Manager Extended clipboard with history and search Copying fragments from any applications
    Text Fairy (OCR) Text recognition from screenshots Notes where selection is prohibited
    Notepad+ Import text from other note-taking applications Transfer data between Google Keep, Samsung Notes etc.

    Example of working with Text Fairy:

    1. Take a screenshot of a note (if allowed).
    2. Open Text Fairy and upload the screenshot.
    3. Click "Recognize text".
    4. Copy the result or export to .txt.
    โš ๏ธ Attention: OCR applications (for example, Text Fairy or Google Lensmay not correctly recognize handwritten text or non-standard fonts. For best results, use clear screenshots with good lighting.

    7. Problem solving: why is the text not copied?

    If the text in notes is not highlighted or copied, the reasons may be as follows:

    • ๐Ÿ”’ Note protection: A password, fingerprint, or encryption blocks actions with the text. The solution is to temporarily remove the protection.
    • ๐Ÿ“ฑ Restrictions shells: On Xiaomi (MIUI) or Huawei (EMUI) sometimes you need to enable the "Allow copying" permission in the application settings.
    • ๐Ÿž Application bug: For example, in Google Keep version 5.22.xxx there was a bug with highlighting text in notes with more than 10,000 characters. The solution is to update the application or use the web version.
    • ๐Ÿ“œ Note format: If the text is inserted as an image or PDF, standard copying will not work - you need OCR.

    Diagnostic checklist:

    Update the notes application to the latest version

    Try to copy the text in another application (for example, in Google Docs)

    Check the permission settings for the application (Settings โ†’ Applications โ†’ Permissions)

    Reboot your phone (sometimes helps with clipboard glitches)-->

    If the problem persists, try clear cache notes apps:

    1. Go to Settings โ†’ Applications.
    2. Find the application (for example, Samsung Notes).
    3. Click "Storage" โ†’ "Clear cache".
    4. Restart application.

    FAQ: Frequently asked questions about copying text in notes

    Is it possible to copy text from a note if it is deleted?

    If a note is deleted but not emptied from the trash (for example, in Google Keep or Samsung Notes), it can be restored within 7-30 days. To do this:

    1. Open the notes application.
    2. Go to the section "Trash" or "Deleted".
    3. Find the note and click "Restore".
    4. Copy the text in the standard way.

    If the recycle bin is empty, try restoring the data through a backup copy (for example, from Google Drive for Google Keep or Samsung Cloud for Samsung Notes).

    How to copy text from a note on a locked phone?

    If the phone is locked (forgotten pattern or PIN), but the notes are synchronized with the cloud, you can:

    • ๐ŸŒ Use web version service (for example, Google Keep).
    • ๐Ÿ“ฑ Connect the phone to a trusted device (for example, via Samsung Flow or Xiaomi Share) and copy the text remotely.
    • ๐Ÿ”ง Reset blocking via Find My Device (Google) or Find My Mobile (Samsung), but this will delete all local data.

    If synchronization is disabled, the only way is to unlock the phone (for example, via recovery mode or contacting a service center).

    Why do strange characters appear when copying text from Samsung Notes?

    This is a typical problem when copying text from formatting (bold font, lists, emoji). data-i="276">formatting

    • ๐Ÿ“‹ Copy the text to notepad (for example, ColorNote or the standard Notes application) to remove the formatting.
    • ๐ŸŒ Use web version of Samsung Notes โ€”the copying works cleaner there.
    • ๐Ÿ”„ Export the note to .txt via the "Share" menu.

    If the problem persists, check the text encoding: sometimes changing the font in the application settings helps.

    Is it possible to automate copying text from notes?

    Yes, the following are suitable for this:

    • ๐Ÿค– Tasker or MacroDroid: you can set up automatic copying of text from notes on a schedule or under certain conditions (for example, when adding a new note).
    • ๐Ÿ“ฅ IFTTT: integration with Google Keep allows you to automatically save text notes in Google Sheets or send by email.
    • ๐Ÿ’ป Python scripts using the API (for example, for Evernote or OneNote).

    Example of automation in Tasker:

    1. Create a task with an action "Open application" (for example, Google Keep).
    2. Add an action "AutoInput" โ†’ "Text" to select text.
    3. Use "Copy to clipboard".
    4. Set up a trigger (for example, by time or when connected to Wi-Fi).
    How to copy text from a note on Android and paste it to iPhone?

    The following methods are suitable for transferring text between Android and iPhone:

    • โ˜๏ธ Cloud services:
      1. Copy the text to Android.
      2. Paste it in Google Docs, Dropbox Paper or Notion.
      3. Open a document on your iPhone and copy the text from there.
  • ๐Ÿ“ง Email: Send the text to your email from Android, then open the letter on your iPhone.
  • ๐Ÿ”— Messengers: Send the text via Telegram, WhatsApp or Slack (use the "Send to yourself" function).
  • ๐ŸŒ Web versions of applications: If your notes are synchronized (for example, Google Keep), open them in the Safari browser on your iPhone.
  • To regularly exchange data between devices, set up synchronization via Google account or use cross-platform applications like Notion or Evernote.