我动态创建了一个视图,并使用LayoutParams设置了参数 动态设置背景颜色后,它仍显示为白色。
这是我的代码。
View line = new View(this);
int margin = DisplayUtils.dpToPixel(5, this);
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, DisplayUtils.dpToPixel(1, this));
params.setMargins(margin, 0, margin, 0);
line.setLayoutParams(params);
line.setBackgroundColor(Color.parseColor("#333333"));
((ViewGroup) container).addView(line);
这是我的容器代码
<LinearLayout
android:id="@+id/list_container"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1.04"
android:background="#fff"
android:orientation="vertical">