获取textview文本并将其粘贴到其他文本上

时间:2014-06-29 16:14:41

标签: java android html textview

我有一个TextView,并在其上写成H 2 O.现在onClick我想复制第一个textview的文本并将其粘贴到另一个textview上。

1 个答案:

答案 0 :(得分:0)

在onClick方法中复制并粘贴此代码:

String theText= textview1.getText().toString();//get the text from the textview
textview2.setText(theText);//set the text to the other textview