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,即没有对应的图标欢迎分享,转载请注明来源:内存溢出
评论列表(0条)