如何动态设置视图的xml属性?

时间:2014-07-20 13:48:14

标签: android android-layout layout widget grid-layout

我想在gridLayout中根据此xml代码添加一个按钮。但是我无法实现。如何根据此xml属性动态添加按钮(以编程方式从源代码中添加)?GridLayout由10组成行和10列

你能帮帮我吗?

<Button android:layout_row="2" android:layout_column="5" android:layout_rowSpan="3" android:text="Can" />

这是我想要实现的截图。我通过xml代码实现了这一点。

enter image description here

1 个答案:

答案 0 :(得分:0)

我不这么认为:

android:layout_row="2"
android:layout_column="5"
android:layout_rowSpan="3"

是您可以分配给按钮的属性。

为什么不将gridView与适配器一起使用,并为每个项目增加一个包含按钮的布局?我认为这是一个更好的方法。

希望它有所帮助。