android中在运行时如何动态设置TextView的显示文本?

android中在运行时如何动态设置TextView的显示文本?,第1张

// 代码逻辑获取字符串

String value="新内容"

TextView text = findViewByid(R.id.xxx)

text.setText(value) //设置新内容

设置Android中TextView显示的值有两种方式:

1.

在xml中设置

android:text="TextView示例"。

2.

在java代码中

TextView

textView

=

(TextView)

findViewById(R.id.textView)

textView.setText("显示TextView")这样就可以动态设置文本了。

只需要代码设置setCompoundDrawables (Drawable left, Drawable top, Drawable right, Drawable bottom) 这个方法即可,如果说drawableLeft为null,即没有对应的图标


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/6369000.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-21
下一篇 2023-03-21

发表评论

登录后才能评论

评论列表(0条)

保存