2013-10-06 91 views

回答

0

您應該使用TextView而不是禁用EditText並嘗試android:textIsSelectable

如果您靶向舊的API,那麼你可以在TextView附加一個點擊監聽,並在onClick只是做:

ClipboardManager cm = (ClipboardManager)context.getSystemService(Context.CLIPBOARD_SERVICE); 
cm.setText(textView.getText()); 
Toast.makeText(context, "Copied", Toast.LENGTH_SHORT).show(); 

再後來某處:

String copiedText = cm.getText(); 

還可以用於更高級的實現,請閱讀http://developer.android.com/guide/topics/text/copy-paste.html