-1

これは私のコードです:

Button copy;
Button previous;
Button more;
TextView screen;
String quote=screen.getText().toString();

variable の値をコピーするには、ボタン copy が必要ですquote。これどうやってするの?私はもう試した:

ClipboardManager clipboard = (ClipboardManager) getSystemService(CLIPBOARD_SERVICE); 
clipboard.setText(screen.getText());

ただし、Android 4.0 以降のデバイスでのみ機能します。

4

1 に答える 1

2

あなたのインポートは間違っていると思います。

使用する

import android.text.ClipboardManager ;

ではない

import android.content.ClipboardManager; // this was instroduced only in API level 11
于 2012-08-29T22:33:06.023 に答える