Search code examples
androidlayouttextsettext

Setting text to a layout


In a class, if I want to set the text to the text value of a string I have, what is the code for that?

I have:

TextView textView = (TextView) findViewById(R.string.noFaceFive);
textView.setText(textView);

but setText says :

The method setText(CharSequence) in the type TextView is not applicable for the arguments (TextView).

Is there a set Text to display the text of a string? Serious mind fart on my part...Thanks!


Solution

  • You seem to be trying to set the text property of textView to textView itself. setText() takes a string, so try ...

    textView.setText("The text you want to appear");