动态更改背景LinearLayout

时间:2010-08-18 13:38:56

标签: android

如何动态更改背景LinearLayout?

2 个答案:

答案 0 :(得分:15)

您是否尝试过其中一种:

yourLayout.setBackgroundColor(int color);
yourLayout.setBackgroundDrawable(Drawable d);
yourLayout.setBackgroundResource(int resid);

如果不自行刷新,这应该给它一个提升:

   yourLayout.invalidate();

答案 1 :(得分:11)

我现在正在工作,所以我无法测试,但我相信这应该有效:

LinearLayout linLay = (LinearLayout) findViewById(R.id.theLinearLayoutId);

//set background to a color
linLay.setBackgroundColor(Color.parseColor("#404040"));

//set background to a drawable
linLay.setBackgroundDrawable(drawableItem);

//set background to a resource
linLay.setBackgroundResource(R.id.backgroundResource);