如何在android textview 设置背景色

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在android textview 设置背景色相关的知识,希望对你有一定的参考价值。

通常来说,每个界面都对应一个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"的背景色就是黑色。
参考技术A 三种:
第一种:
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);

满意的话望采纳!本回答被提问者和网友采纳

以上是关于如何在android textview 设置背景色的主要内容,如果未能解决你的问题,请参考以下文章

安卓开发:如何静态和动态设置textView的文本和背景色彩,如何填?初学不知填什么.要详细

安卓开发:如何静态和动态设置textView的文本和背景色彩,如何填?初学不知填什么.要详细

android字体颜色如何设置?

请问Android中怎么去掉TextView的背景?

Android圆角背景设置

android createBitmap,如何设置背景色