Here you can find the source of readFromClipboard(Context context)
public static String readFromClipboard(Context context)
//package com.java2s; import android.content.ClipData; import android.content.ClipboardManager; import android.content.Context; public class Main { public static String readFromClipboard(Context context) { // Gets the ClipboardManager ClipboardManager clipboard = (ClipboardManager) context .getSystemService(Context.CLIPBOARD_SERVICE); // Gets the clipboard data from the clipboard ClipData clip = clipboard.getPrimaryClip(); if (clip != null) { // Gets the first item from the clipboard data ClipData.Item item = clip.getItemAt(0); CharSequence text = item.getText(); if (text != null && text.length() > 0) { return text.toString(); }/* w ww .j a v a2 s . c om*/ // return coerceToText(context, item).toString(); } return null; } }