在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"的背景色就是黑色。
三种:第一种:
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)
静态就是在可视化的Graphical Layout内的属性内填textView1.TextColor(文本色)
textView1.Background(背景色)
中填 @android就会自动d出所有定义的色彩值
如 @android:color/holo_blue_bright
动态就是程序中设定色彩
import android.graphics.Color
textView1.setTextColor(Color.RED)
textView1.setBackgroundColor(Color.RED)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)