我正在尝试将字符串从一个活动传递到另一个活动。我检索到这样的信息:
Intent openReadMail = getIntent();
String readfrom = openReadMail.getStringExtra("from");
现在我想在屏幕上显示这个字符串。我这个 xml TextView 元素:
<TextView
android:id="@+id/from"
android:layout_width="match_parent"/>
但我无法将字符串转换为文本视图,有没有更好的方法呢?谢谢你们的帮助!