Android -TextView to String

时间:2013-12-19 08:09:11

标签: android string textview

我的线性布局中有两个文本视图,并显示动态文本。 现在,如何将该文本视图转换为我的应用程序中的字符串。

2 个答案:

答案 0 :(得分:5)

假设您的textview名称是tv1,然后尝试

String input = tv1.getText().toString();

答案 1 :(得分:1)

您无法将textview更改为字符串,但您可以从textview获取字符串。 这适用于textview:

TextView textView;
textView = (TextView) findViewById(R.id.tv_1);
textView.setText("AFJHDFGKS");

然后将文本作为字符串:

String text = textView.getText().toString();