[Android] Reading of Clipboard data changes

Source: Internet
Author: User

1. Android. Text. clipboardmanager

API level1, an interface without data changes, needs to be simulated. The implementation of this method is complicated and requires a service to be started for a long time. Compare the content of the clipboard with the content read last time. If the content is different, the Clipboard data is changed .. If you have not read the clipboard before, it is an empty string by default. It is best to store this value on the SD card, for example, sharedpreference. Stored in static variables ..

How to read clipboard content

     private String getClipboardText() {        ClipboardManager clipboard = (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE);        String text = "";        try {            if (clipboard != null && clipboard.hasText()) {                CharSequence tmpText = clipboard.getText();                clipboard.setText(tmpText);                if (tmpText != null && tmpText.length() > 0) {                    text = tmpText.toString().trim();                }            }        } catch (Exception e) {            e.printStackTrace();            text = "";        }        return text;    }


2. Android. content. clipboardmanager


API level11 is inherited from Android. Text. clipboardmanager and can be used with ready-made interfaces:

Addprimaryclipchangedlistener.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.