0

我正在尝试将字符串从一个活动传递到另一个活动。我检索到这样的信息:

Intent openReadMail = getIntent();
String readfrom = openReadMail.getStringExtra("from");

现在我想在屏幕上显示这个字符串。我这个 xml TextView 元素:

 <TextView
        android:id="@+id/from"
        android:layout_width="match_parent"/>

但我无法将字符串转换为文本视图,有没有更好的方法呢?谢谢你们的帮助!

4

2 回答 2

2

您必须为 TextView 创建一个变量,然后设置文本。

TextView fromtxt = (TextView) findViewById(R.Id.from);

Fromtxt.setText(readfrom);
于 2012-10-07T16:17:09.417 回答
2

您需要使用您读入的字符串设置 TextView 的文本。

TextView tv = (TextView)findViewById(R.id.from);
tv.setText(readFrom);
于 2012-10-07T16:17:16.473 回答