如何给textview设置背景颜色

如何给textview设置背景颜色,第1张

三种:

第一种:

setBackgroundResource:通过颜色资源ID设置背景色

textView.setBackgroundResource(R.color.background)

第二种:

setBackgroundColor:通过颜色值设置背景色。

textView.setBackgroundColor(android.graphics.Color.RED)

第三种:

setBackgroundDrawable:通过Drawable对象设置背景色。

Resources resources=getBaseContext().getResources()

Drawable drawable=resources.getDrawable(R.color.background)

textView.setBackgroundDrawable(drawable)

通常来说,每个界面都对应一个activity。而在activity的View视图中,可以在最外层容器去设置背景图片或背景颜色。

在xml布局里:

android:background="@drawable/img1"

或者

android:background="@color/white"

在java代码里,也可以设置

layout.setBackgroundColor(R.color.white)

layout.setBackgroundDrawable(drawable)

layout.setBackgroundResource(R.drawable.img1)

再者,系统默认的背景色是能过theme来控制的,就是说创建一个activity的背景色,如果在

AndroidManifest.xml文件里有设置如下:

android:theme="@android:style/Theme"

这样设置activity的主题样式,"@android:style/Theme"一般是系统默认的。这个不单是背景色,还有其它的样式,具体可以在网上查一下android:theme的用法。

而"@android:style/Theme"的背景色就是黑色。


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

原文地址: http://outofmemory.cn/tougao/11213953.html

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

发表评论

登录后才能评论

评论列表(0条)

保存