android显示字符串

时间:2012-10-07 16:14:55

标签: android xml string

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

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

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

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

但是我无法将字符串转换为textview,有没有更好的方法呢?谢谢你的帮助!

2 个答案:

答案 0 :(得分:2)

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

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

Fromtxt.setText(readfrom);

答案 1 :(得分:2)

您需要使用您读入的String设置TextView的文本。

TextView tv = (TextView)findViewById(R.id.from);
tv.setText(readFrom);