这是我的代码:
Button copy;
Button previous;
Button more;
TextView screen;
String quote=screen.getText().toString();
我需要按钮复制来复制变量的值quote
。我怎样才能做到这一点?我试过了:
ClipboardManager clipboard = (ClipboardManager) getSystemService(CLIPBOARD_SERVICE);
clipboard.setText(screen.getText());
但它仅适用于 Android 4.0+ 设备。