我的main.xml布局文件中有一个名为thefact的对象,即TextView。我还有一个名为sharefact的字符串。我想将TextView中的文本保存到sharefact字符串中。我不能这样做:
sharefact = thefact
或类似的东西因为它希望我将sharefact转换为textview。
谢谢!
答案 0 :(得分:33)
TextView theFact = (TextView) findViewById(R.id.theFact);
String shareFact = theFact.getText().toString();
答案 1 :(得分:33)
从TextView
获取文字会返回CharSequence
。要将CharSequence
转换为String
,请使用toString()
函数。
String sharedFact = theFact.getText().toString();