我需要使用 View 在我的表格布局上设置分隔线。我可以在 xml 中做到这一点,但我想要以编程方式创建视图。
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:background="#aaa" />
我该怎么做。有人能帮我吗。提前致谢。
我需要使用 View 在我的表格布局上设置分隔线。我可以在 xml 中做到这一点,但我想要以编程方式创建视图。
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:background="#aaa" />
我该怎么做。有人能帮我吗。提前致谢。
你试过了吗?
View v = new View(this);
v.setLayoutParams(new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.MATCH_PARENT, 1));
v.setBackgroundColor(Color.parseColor("#aaa"));
此代码用于创建图像视图并设置其布局参数和颜色
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
ImageView iv1= new ImageView();
iv1.setLayoutParams(params);
iv1.setBackgroundColor(R.color.black); // if you define black as color in xml or any color