(String text)
| 73 | } |
| 74 | |
| 75 | public static void copy(String text) { |
| 76 | ClipboardManager manager = (ClipboardManager) Init.context().getSystemService(Context.CLIPBOARD_SERVICE); |
| 77 | manager.setPrimaryClip(ClipData.newPlainText("fongmi", text)); |
| 78 | Notify.show("已複製 " + text); |
| 79 | } |
| 80 | } |