我有布局
<android.support.v7.widget.GridLayout
android:id="@+id/grid_layout"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="@dimen/default_grid_height"
xmlns:app="http://schemas.android.com/apk/res-auto">
<!--I need add to this child attribute "app:layout_*"-->
<Button
android:text="1"
app:layout_columnSpan="2"
app:layout_columnWeight="2"
app:layout_rowWeight="3"/>
</android.support.v7.widget.GridLayout>
我需要以编程方式将子级添加到此布局容器(support.v7.widget.GridLayout)
,并使用此布局支持的自定义属性。我怎么能这样做?
假设我可以做类似的事情,但没有找到像tihs这样的方法。
widget = CustomWidget(context)
widget.addParam("app:layout_rowWeight", 3) // how??
答案 0 :(得分:1)
向GridLayout
this添加内容并不困难。但是你需要知道你想要添加什么。
GridLayout gv = (GridLayout) findViewById(R.id.grid_layout);
TextView tv = new TextView(context);
tv.setGravity(Gravity.CENTER_HORIZONTAL | Gravity.TOP);
tv.setText("TextView");
LayoutParams params = new LayoutParams(Set your column and row information as params);
tv.setLayoutParams(params);
gv.addView(tv);
答案 1 :(得分:0)
我的建议是,我们可以非常简单,只需在自定义类中创建一个方法,
如果您使用XML进行设置,则可以像app:layout_rowWeight
一样调用,以便可以在TypedArray中使用自定义类。
但是对于Jave,你可以创建一个单独的方法,你可以实现相同的目标。
Ex检查TextView Android源代码,然后搜索setTextColor
方法。