如何动态设置 TextView 中的文本?
布局文件:
<TextView
android:id="@+id/text"
android:layout_width="wrap content"
android:layout_height="wrap content"/>
代码:
TextView textView = (TextView)findViewById(R.id.text);
现在如何设置文本?
textView.setText(R.string.yourString)
或者textView.setText("your string");
您可以通过以下方式在 xml 文件中设置文本:
android:text="some text"
或通过以下代码在代码中
textView.setText("some text");
请在问这些问题之前先做一些谷歌。反正:
textview.setText("Text");
textView.setText("你要输入的文本");
或 textView.setText("你的文字");
您也可以将字符串用作 R.String.stringname 您可以将其添加到 res 中的值中。