Here you can find the source of getClipboard(Context context)
@SuppressWarnings("deprecation") public static String getClipboard(Context context)
//package com.java2s; import android.content.Context; public class Main { @SuppressWarnings("deprecation") public static String getClipboard(Context context) { android.text.ClipboardManager clipboard = (android.text.ClipboardManager) context .getSystemService(Context.CLIPBOARD_SERVICE); return clipboard.getText().toString(); }//from w w w . j a v a 2s .c om }